export declare class Cache { store: Map; constructor(); set(key: string, value: any, ttl: number): void; get(key: string): any; delete(key: string): void; } //# sourceMappingURL=cache.d.ts.map