import { KvStore } from "./KvStoreContext.js"; export declare class InMemoryKVStore implements KvStore { private store; get(key: string): Promise; set(key: string, value: string): Promise; delete(key: string): Promise; clearAll(): Promise; } //# sourceMappingURL=InMemoryKVStore.d.ts.map