import type { IndexMemory } from "../../indexer/index-memory.js"; export declare const conceptsTool: { name: string; description: string; inputSchema: { type: "object"; properties: { query: { type: string; description: string; }; limit: { type: string; description: string; }; }; required: string[]; }; }; export declare function handleConcepts(indexer: IndexMemory, args: Record): Promise;