export declare class Cache { private autoCleanup; private cache; private clearTimeout; private timeToCueNewCleanup; constructor(autoCleanup?: boolean); /** Cache the result of function for a limited time */ cacheResult(key: string, fcn: () => T, limitTime: number): T; cleanUp(): void; clear(): void; } //# sourceMappingURL=cache.d.ts.map