import type { Indexer } from "../../indexer/indexer.js"; export declare const verifyTool: { name: string; description: string; inputSchema: { type: "object"; properties: { evidence_ids: { type: string; items: { type: string; }; description: string; }; claim: { type: string; description: string; }; }; required: string[]; }; }; export declare function handleVerify(indexer: Indexer, args: Record): string;