import type { IndexFiles } from "../../indexer/index-files.js"; import type { IndexCode } from "../../indexer/index-code.js"; import type { IndexGraph } from "../../indexer/index-graph.js"; export declare const testMapTool: { name: string; description: string; inputSchema: { type: "object"; properties: { ref: { type: string; description: string; }; include_importers: { type: string; description: string; }; }; }; }; export declare function handleTestMap(indexer: IndexFiles & IndexCode & IndexGraph, args: Record): string;