import type { MemorySearchInput, MemorySearchOutput } 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 { AccessTracker } from '../tracking/access-tracker.js'; export declare function handleMemorySearch(args: MemorySearchInput, embedder: Embedder, sqlite: SQLiteStore, qdrant: QdrantStore, currentProject?: string, accessTracker?: AccessTracker): Promise; //# sourceMappingURL=search.d.ts.map