export interface RedisConfig {
    host: string;
    port: number;
    username?: string;
    password?: string;
    db?: number;
}
export declare function parseRedisConnectionString(redisUrl: string): RedisConfig;
