import type { IStorageService } from "./IStorageService"; import type { WidgetSamplerLog } from "../../domain"; export declare class AsyncStorageService implements IStorageService { private key; constructor(storageId: string); read(key?: string): Promise; write(key: string, data: WidgetSamplerLog): Promise; write(data: WidgetSamplerLog): Promise; delete(key?: string): Promise; exists(key?: string): Promise; private getDefaultValue; } //# sourceMappingURL=AsyncStorageService.d.ts.map