import { Cache } from '../index';
import { WrappedNodeRedisClient } from 'handy-redis';
export declare class RedisCache implements Cache {
cache: WrappedNodeRedisClient;
constructor();
get(key: string): Promise<any>;
put(key: string, value: any): Promise<void>;
}