import type { ParsedConnectionProperties } from './DatabricksDriver'; export declare function resolveJDBCDriver(): Promise; /** * Extract if exist UID and PWD from URL and return UID, PWD and URL without these params. * New Databricks OSS driver throws an error if any parameter is provided in the URL and as a separate param * passed to the driver instance. That's why we strip them out from the URL if they exist there. * @param jdbcUrl */ export declare function extractAndRemoveUidPwdFromJdbcUrl(jdbcUrl: string): [uid: string, pwd: string, cleanedUrl: string]; export declare function parseDatabricksJdbcUrl(jdbcUrl: string): ParsedConnectionProperties; //# sourceMappingURL=helpers.d.ts.map