import { DEngine } from "@dendronhq/common-all"; export declare class MemoryStore { static _instance: MemoryStore; static instance(force?: boolean): MemoryStore; static store: () => any; put(key: string, value: any): Promise; getEngine(): DEngine; get(key: string): Promise; list(prefix: string): Promise; }