import { Client } from 'pg';
import { DBOptions } from '../types';
export declare const getConnection: ({ dbConfig, }: DBOptions) => Promise<Client>;
