export declare class StorageHelper { private storageWindow; /** * This is used to get a storage object * @returns {object} the storage */ constructor(); /** * This is used to return the storage * @returns {object} the storage */ getStorage(): any; } /** * @deprecated use named import */ export default StorageHelper;