export interface RedisConfig {
    host: string;
    port: number;
    username?: string;
    password?: string;
    db?: number;
    tls?: any;
    family?: number | string;
}
export declare function parseRedisConnectionString(redisUrl: string): RedisConfig;
//# sourceMappingURL=redis-conig-parser.d.ts.map