export declare function redisUrlParse(url: string): {
    host: string;
    port: number;
    database: string;
    password: string | null;
};
