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 reviewDiffTool: { name: string; description: string; inputSchema: { type: "object"; properties: { ref: { type: string; description: string; }; include_added_similarity: { type: string; description: string; }; max_files: { type: string; description: string; }; token_budget: { type: string; description: string; }; }; }; }; export declare function handleReviewDiff(indexer: IndexFiles & IndexCode & IndexGraph, args: Record): string;