export declare class LocalStorage {
    private storage;
    constructor();
    private getStorage();
    getItem(key: string): string | null;
    removeItem(key: string): void;
    setItem(key: string, data: string): void;
    _wrapped(): Storage;
}
