import type { IndexFiles } from "../../indexer/index-files.js"; import type { IndexCode } from "../../indexer/index-code.js"; import type { IndexGraph } from "../../indexer/index-graph.js"; import type { IndexMemory } from "../../indexer/index-memory.js"; export declare const askTool: { name: string; description: string; inputSchema: { type: "object"; properties: { query: { type: string; description: string; }; scope: { type: string; description: string; }; mode: { type: string; enum: string[]; description: string; }; }; required: string[]; }; }; export declare function handleAsk(indexer: IndexFiles & IndexCode & IndexGraph & IndexMemory, args: Record): Promise;