import { BaseEntityStore } from "../../../schema/index.js"; export declare class InMemoryEntityStore extends BaseEntityStore { lc_namespace: string[]; private store; constructor(); get(key: string, defaultValue: string | undefined): Promise; set(key: string, value: string | undefined): Promise; delete(key: string): Promise; exists(key: string): Promise; clear(): Promise; }