import type { SummaryRepository } from "../db/summaries"; import type { SearchOrchestrator } from "../search/orchestrator"; import type { ToolDefinition } from "../types"; /** Create the mem-search tool with FTS5, vector, and advanced filter support. */ export declare function createSearchTool(searchOrchestrator: SearchOrchestrator, summaries: SummaryRepository, projectPath?: string): ToolDefinition; //# sourceMappingURL=search.d.ts.map