import type pgPromise from "pg-promise"; export declare const getSchemaForTableConfig: (t: pgPromise.ITask<{}>) => Promise<{ table_ident: string; table_name: string; table_schema: string; columns: null | { table_ident: string; table_name: string; table_schema: string; column_name: string; column_name_escaped: string; column_default: string | null; character_maximum_length: number | null; numeric_precision: number | null; numeric_scale: number | null; udt_name: string; is_nullable: boolean; ordinal_position: number; }[]; triggers: null | { trigger_def: string; function_def: string; }[]; constraints: null | { conname: string; definition: string; contype: "c" | "f" | "p" | "u"; columns: null | string[]; }; indexes: null | { indexname: string; indexdef: string; }[]; }[]>; export type SchemaInfo = Awaited>; //# sourceMappingURL=getSchemaForTableConfig.d.ts.map