import { StorageKey } from "../constants/storage-key"; export declare class PersistentCache { private cache; private persistence; private persistenceKey; constructor(persistenceKey: StorageKey); get(key: string): T | undefined; set(key: string, value: T): void; clear(): void; }