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