import { type IConnectionStringParameters } from "connection-string-parser";
/**
 * Parses a PostgreSQL connection string.
 * Accepts both postgres:// and postgresql:// schemes and normalizes to postgresql://
 *
 * @param connectionString - The connection string to parse (e.g., "postgresql://user:pass@localhost:5432/dbname")
 * @returns Parsed connection string parameters
 */
export declare function parseConnectionString(connectionString: string): IConnectionStringParameters;