export type PostgresTable = { name: string; columns: string[]; data: string[][]; }; export type PostresData = PostgresTable[]; export declare function getDataFromPostgres(connectionString: string): Promise;