import type { Column } from 'drizzle-orm'; import { z as zod } from 'zod/v4'; import type { CreateSchemaFactoryOptions } from './schema.types.js'; import type { Json } from './utils.js'; export declare const literalSchema: zod.ZodUnion; export declare const jsonSchema: zod.ZodType; export declare const bufferSchema: zod.ZodType; export declare function columnToSchema(column: Column, factory: CreateSchemaFactoryOptions> | true | undefined> | undefined): zod.ZodType;