import type { IndexFiles } from "../../indexer/index-files.js"; import type { IndexMemory } from "../../indexer/index-memory.js"; export declare const recallTool: { name: string; description: string; inputSchema: { type: "object"; properties: { query: { type: string; description: string; }; mode: { type: string; enum: string[]; description: string; }; category: { type: string; enum: string[]; description: string; }; limit: { type: string; description: string; }; include_stale: { type: string; description: string; }; kind: { type: string; enum: string[]; description: string; }; }; }; }; export declare function handleRecall(indexer: IndexFiles & IndexMemory, args: Record): Promise;