import type { PostgresConnectionOptions } from '../connection-manager.js'; export declare const STRING_CONNECTION_OPTION_NAMES: readonly ("options" | "host" | "user" | "database" | "password" | "application_name" | "client_encoding")[]; export declare const BOOLEAN_CONNECTION_OPTION_NAMES: readonly ("binary" | "keepAlive" | "statement_timeout" | "ssl")[]; export declare const NUMBER_CONNECTION_OPTION_NAMES: readonly ("port" | "statement_timeout" | "query_timeout" | "lock_timeout" | "keepAliveInitialDelayMillis" | "idle_in_transaction_session_timeout" | "connectionTimeoutMillis")[]; export declare const CONNECTION_OPTION_NAMES: readonly (keyof PostgresConnectionOptions)[];