import { CloudStorageService } from "./cloudstorageService"; export declare class CloudStorage { private cloudstorageService; Keys: Map; constructor(cloudstorageService: CloudStorageService, Keys: Map); setItem(key: string, value: string): Promise; getItem(key: string): Promise; }