import { StoreInterface, StoreInterfaceStoreName } from './utils/PersistedObject.js'; export default class InMemoryStore extends StoreInterface { private store; constructor(appId: string, dbName: StoreInterfaceStoreName); getItem(k: any): Promise; setItem(k: any, v: any): Promise; getAllKeys(): Promise; multiSet(keyValuePairs: Array<[string, any]>): Promise; removeItem(key: string): Promise; } //# sourceMappingURL=InMemoryStorage.d.ts.map