import { LocalStorage, Migrations, StorageOwnData } from './types'; export declare function hasLocalStorage(): boolean; export declare function getLocalStorage(): LocalStorage; export declare function getDefaultState(migrations: Migrations): { storage: { version: number; }; }; export declare function migrateStorage(key: string, migrations: Migrations): T;