export declare class LocalCacheService { private static readonly dictionary; private static lastPruneTime; setCacheValue(key: string, value: T, ttl: number): T; getCacheValue(key: string): T | undefined; deleteCacheKey(key: string): void; needsPrune(): boolean; prune(): void; }