declare class Cache { private cache; private cleanupInterval; constructor(); set(key: string, value: T, ttl: number): void; get(key: string): T | null; has(key: string): boolean; delete(key: string): void; clear(): void; private cleanup; destroy(): void; } export declare const cache: Cache; export {}; //# sourceMappingURL=cache.d.ts.map