import type { IndexFiles } from "../../indexer/index-files.js"; import type { IndexCode } from "../../indexer/index-code.js"; export declare const findReferencesTool: { name: string; description: string; inputSchema: { type: "object"; properties: { symbol: { type: string; description: string; }; exact: { type: string; description: string; }; token_budget: { type: string; description: string; }; }; required: string[]; }; }; export declare function handleFindReferences(indexer: IndexFiles & IndexCode, args: Record): Promise;