type ColumnMeta = { isJson: boolean; name: string; }; type TableMeta = { columns: ColumnMeta[]; name: string; primaryKey: string[]; }; type ForeignLink = { from: string; to: string; }; export declare const chunkRows: (items: Item[], size: number) => Item[][]; export declare const quoteIdent: (name: string) => string; export declare const conflictClause: (meta: TableMeta) => string; export declare const dependencyOrder: (names: string[], links: ForeignLink[]) => string[]; export declare const encodeValue: (col: ColumnMeta, value: unknown) => {} | null; export declare const runDb: (args: string[]) => Promise; export {};