import * as redis from "redis"; import { BasicCache } from "./BasicCache"; export declare class RedisCache extends BasicCache { private readonly minCompressionValueLength; private client; constructor(clientConfig: redis.ClientOpts, minCompressionValueLength?: number | null); exists(key: string): Promise; get(key: string): Promise; set(key: string, value: any, ttl: number): Promise; delete(key: string): Promise; deleteAll(): Promise; migrateToCompress(prefix?: string | null): Promise; }