import type { TableConfig } from "./TableConfig"; type Args = { tableName: string; tableConf: TableConfig[string]; }; export type ConstraintDef = { /** * Named constraints are used to show a relevant error message */ name?: string; content: string; alterQuery: string; }; export declare const getConstraintDefinitionQueries: ({ tableConf, tableName, }: Args) => ConstraintDef[] | undefined; export {}; //# sourceMappingURL=getConstraintDefinitionQueries.d.ts.map