import type { IndexFiles } from "../../indexer/index-files.js"; import type { IndexCode } from "../../indexer/index-code.js"; import type { IndexMemory } from "../../indexer/index-memory.js"; export declare const critiqueTool: { name: string; description: string; inputSchema: { type: "object"; properties: { evidence_ids: { type: string; items: { type: string; }; description: string; }; symbols: { type: string; items: { type: string; }; description: string; }; claim: { type: string; description: string; }; }; required: string[]; }; }; export declare function handleCritique(indexer: IndexFiles & IndexCode & IndexMemory, args: Record): string;