import { IDataStoreClient } from './client.interface'; export declare class RedisClient implements IDataStoreClient { private client; start(): Promise; stop(): Promise; get(key: string): Promise; set(key: string, value: string): Promise; del(key: string): Promise; expire(key: string, seconds: number): Promise; ttl(key: string): Promise; incr(key: string): Promise; decr(key: string): Promise; slice(list: string, start?: number, end?: number): Promise; push(list: string, value: string): Promise; unshift(list: string, value: string): Promise; pop(list: string): Promise; shift(list: string): Promise; }