import { Store } from "./types/store"; declare class RedisStore implements Store { private _redisClient; private REDIS_CLIENT_OPTS; constructor(); create(key: string, data: any): Promise<{ sessionId: string; }>; update: (id: string, newData: any) => {}; getById(id: string): Promise; delete(key: string): Promise; } export default RedisStore;