import { BaseStore } from './base-store.js'; /** * Implementation of BaseStore using Memory as the storage backend. * * @remarks * This implementation can be used testing and caching of expensive operations. */ export declare class StoreInMemory extends BaseStore { private store; constructor(); all(): Promise<{ [key: string]: T; }>; keys(): Promise; get(key: string): Promise; set(key: string, value: T): Promise; delete(key: string): Promise; clear(): Promise; has(key: string): Promise; }