import { PoolConfig } from 'pg'; import { DriversClassType } from '../Types'; export declare class PostgreSQLDriver implements DriversClassType { readonly options: PoolConfig; private pool; constructor(options: PoolConfig); init(table: string): Promise; createTable(table: string): Promise; tables(): Promise; insert(table: string, value: any[]): Promise; setRowByKey(table: string, key: string, value: any): Promise; getAllRows(table: string): Promise; getRowByKey(table: string, key: string): Promise; deleteRowByKey(table: string, key: string): Promise; deleteAllRows(table: string): Promise; close(): Promise; }