declare class LocalStorageMock { store: { [key: string]: string; }; constructor(); clear(): void; getItem(key: string): string; setItem(key: string, value: string): void; removeItem(key: string): void; }