import { PersistentStorage } from '../types'; export declare class LocalStorageWrapper implements PersistentStorage { protected storage: LocalStorageInterface; constructor(storage: LocalStorageInterface); getItem(key: string): string | null; removeItem(key: string): void; setItem(key: string, value: string | null): void; } interface LocalStorageInterface { getItem(key: string): string | null; setItem(key: string, value: string): void; removeItem(key: string): void; } export {};