declare function pgEnum(name: string, values: readonly string[]): unknown;

export const orderStatus = pgEnum('order_status', ['draft', 'paid']);
