import { Pool } from "pg";
export declare function createPostgresConnection(config: {
    host: string;
    port: number;
    username: string;
    password: string;
    database: string;
    schema: string;
}): Promise<Pool>;
