import type pgPromise from "pg-promise"; import type { DB } from "../Prostgles"; export type PGConstraint = { name: string; table: string; type: "c" | "p" | "u" | "f"; cols: Array; definition: string; schema: string; }; export declare const fetchTableConstraints: ({ db, column, table, types, }: ColConstraintsArgs) => Promise; type ColConstraintsArgs = { db: DB | pgPromise.ITask<{}>; table?: string; column?: string; types?: PGConstraint["type"][]; }; export {}; //# sourceMappingURL=fetchTableConstraints.d.ts.map