import { IConfig } from '../interface'; export declare class PostgresqlClient { parsedUrl: IConfig; private client; constructor(dbUrl: string); startConnection(): Promise; query(query: string): Promise>; runQueryWithTransaction(migration: string): Promise; endConnection(): Promise; }