import { Serializable } from "@langchain/core/load/serializable"; //#region src/memory/stores/entity/base.d.ts /** * Base class for all entity stores. All entity stores should extend this * class. */ declare abstract class BaseEntityStore extends Serializable { abstract get(key: string, defaultValue?: string): Promise; abstract set(key: string, value?: string): Promise; abstract delete(key: string): Promise; abstract exists(key: string): Promise; abstract clear(): Promise; } //#endregion export { BaseEntityStore }; //# sourceMappingURL=base.d.ts.map