export declare class LocalStorageLRUCache { private _localStorageKey; private _maxSize; constructor(options: { localStorageKey: string; maxSize: number; }); set(key: string, value: string): void; get(key: string): string | null; private readLRU; private writeLRU; }