export interface ConnectionConfig { ssl?: boolean; host?: string; port?: number | string; path?: string; } export declare const getUrl: (connection: ConnectionConfig) => string;