export interface RedisConfig {
    host: string;
    port: number;
    username?: string;
    password?: string;
    protocol?: string;
    db?: number;
    ttl?: number;
}
export declare class CacheConfigKit {
    private static configs;
    private static currentConfig;
    static devMode: boolean;
    static putConfig(config: RedisConfig, appId: string): void;
    static setCurrentConfig(appId: string): void;
    static getCurrentConfig(): RedisConfig;
}
