import type { StorageProvider } from './interface.js'; export declare class RedisStorage implements StorageProvider { name: string; private client; constructor(url: string, token: string); get(key: string): Promise; set(key: string, value: T): Promise; delete(key: string): Promise; list(prefix?: string): Promise; } //# sourceMappingURL=redis.d.ts.map