export declare class Cache { private store; get(key: string): T | undefined; set(key: string, value: T): void; invalidate(key: string): void; findKey(predicate: (value: T) => boolean): string | undefined; invalidateMatching(predicate: (value: T) => boolean): void; sweep(thresholdMs: number): number; size(): number; } //# sourceMappingURL=cache.d.ts.map