import { PostgresConnection } from "./PostgresConnection";
import { type PostgresJSDialectConfig } from "kysely-postgres-js";
export declare class PostgresJsConnection extends PostgresConnection<PostgresJSDialectConfig["postgres"]> {
    name: string;
    constructor(config: PostgresJSDialectConfig);
    close(): Promise<void>;
}
export declare function postgresJs(config: PostgresJSDialectConfig): PostgresJsConnection;
