export declare class Storage { private name; constructor(name?: string | null); getItem(key: string): Promise; setItem(key: string, value: string): Promise; }