import { KvStore } from "jazz-tools"; export declare class LocalStorageKVStore implements KvStore { constructor(); get(key: string): Promise; set(key: string, value: string): Promise; delete(key: string): Promise; clearAll(): Promise; } //# sourceMappingURL=LocalStorageKVStore.d.ts.map