import { type ColBuilder, type ColumnOptions } from "./columns.js"; import type { ForeignKeyRef } from "../types/index.js"; export interface PgEnumConfig { enumName: string; enumValues: TValues; } export declare function pgEnum(enumName: string, enumValues: TValues): ((nameOrOpts?: string | ColumnOptions, opts?: ColumnOptions) => ColBuilder<"text", N, P, R> & { _enumType: TValues[number]; enumConfig: PgEnumConfig; }) & { enumName: string; enumValues: TValues; }; //# sourceMappingURL=enum.d.ts.map