declare class Cache { private cache; private readonly defaultTTL; get(key: string): T | null; set(key: string, data: T, ttl?: number): void; clear(): void; delete(key: string): boolean; size(): number; } export declare const cache: Cache; export {}; //# sourceMappingURL=cache.d.ts.map