import { Storage } from './Storage'; export declare class BrowserStorage implements Storage { get(key: string): Promise; set(key: string, value: any): Promise; unset(key: string): Promise; }