export default class StorageImpl {
    private static _storageValue;
    private static getKey;
    private static get storageValue();
    static setStorage(key: string, value: any): void;
    static getStorage(key: string): any;
    static removeStorage(key: string): void;
    static clearStorage(): void;
}
