import { SQL } from 'drizzle-orm/sql'; import { AnyPgTable } from './table'; export declare class CheckBuilder { name: string; value: SQL; protected brand: 'PgConstraintBuilder'; constructor(name: string, value: SQL); } export declare class Check { table: AnyPgTable; readonly name: string; readonly value: SQL; constructor(table: AnyPgTable, builder: CheckBuilder); } export declare function check(name: string, value: SQL): CheckBuilder; //# sourceMappingURL=checks.d.ts.map