import { type TypeId } from './typeid.js'; /** * Drizzle column builder for a branded TypeID text value (Postgres). Stores a * plain `text` column so drizzle-kit migrations and `$inferSelect` work * unchanged. * * id: typeid('post').primaryKey().$defaultFn(() => generate('post')) */ export declare function typeid
(prefix: P): import("drizzle-orm/pg-core").PgCustomColumnBuilder<{ name: ""; dataType: "custom"; columnType: "PgCustomColumn"; data: TypeId
; driverParam: string; enumValues: undefined; }>; export { generate, parse, asTypeId, encode, decode } from './typeid.js'; export type { TypeId } from './typeid.js'; //# sourceMappingURL=typeid-pg.d.ts.map