export declare class Cache { private _cache; set(key: string, data: T, expiration?: number | Date): void; get(key: string): T; remove(key: string): void; clear(): void; private getHashKey; }