import type { IVectorStore } from "./VectorStore.ts"; export declare class LongTermMemoryImpl { private vectorStore; constructor(vectorStore: IVectorStore); store(key: string, value: unknown): Promise; retrieve(key: string): Promise; delete(key: string): Promise; } //# sourceMappingURL=LongTermMemory.d.ts.map