import type { MySQLSSLOptions } from './types.js';
export declare function getConnectionOptsFromEndpointUri(endpointUri: string): {
    user: string;
    password: string;
    protocol: string;
    host: string;
    port: number;
    database: string;
    trace: boolean;
    debug: boolean;
    ssl: MySQLSSLOptions;
};
