export declare class Storage { name: string; constructor(name: string); get(): any; set(value: any): void; delete(): void; }