import { Table } from './typescript'; import { SQLStatement } from 'sql-template-strings'; export declare type Enums = { [key: string]: string[]; }; export declare class Postgres { private connection; private defaultSchema; constructor(connectionString: string); table(tableName: string): Promise; allTables(): Promise<{ name: string; table: Table; }[]>; query(query: SQLStatement): Promise; private tableNames; schema(): string; private enums; private getTable; }