import type { MemoryContextInput, MemoryContextOutput } from '../types/index.js'; import type { Embedder } from '../embedding/embedder.js'; import type { SQLiteStore } from '../storage/sqlite.js'; import type { QdrantStore } from '../storage/qdrant.js'; import type { Neo4jStore } from '../storage/neo4j.js'; import type { EntityExtractor } from '../extraction/extractor.js'; import type { AccessTracker } from '../tracking/access-tracker.js'; export declare function handleMemoryContext(args: MemoryContextInput, embedder: Embedder, sqlite: SQLiteStore, qdrant: QdrantStore, neo4j: Neo4jStore, currentProject?: string, extractor?: EntityExtractor, accessTracker?: AccessTracker): Promise; //# sourceMappingURL=context.d.ts.map