import { IDelOptions, ISetOptions } from '../interfaces/redis.interface'; export declare class RedisService { private readonly client; constructor(client: any); set(key: string, value: any, options?: ISetOptions): Promise; get(key: string): Promise; deleteCacheList(key: string, options?: IDelOptions): Promise; }