import { KeyValueStore } from '../types'; /** * Redis store implementation * Requires ioredis package */ export declare class RedisStore implements KeyValueStore { private redis; constructor(redis: any); get(key: string): Promise; set(key: string, value: string, ttl?: number): Promise; delete(key: string): Promise; scan(pattern: string): Promise; } /** * Create Redis store from connection URL */ export declare function createRedisStore(redis: any): KeyValueStore; //# sourceMappingURL=RedisStore.d.ts.map