import type { IndexFiles } from "../../indexer/index-files.js"; import type { IndexCode } from "../../indexer/index-code.js"; export declare const impactTool: { name: string; description: string; inputSchema: { type: "object"; properties: { symbol: { type: string; description: string; }; limit: { type: string; description: string; }; cross_repo: { type: string; description: string; }; partition_threshold: { type: string; description: string; }; }; required: string[]; }; }; export declare function handleImpact(indexer: IndexFiles & IndexCode, args: Record): string;