/** * QA360 Verify Tool * Verify proof integrity and signatures via MCP */ import { MCPServerConfig, VerifyArgs, VerifyResult } from '../types/index.js'; import { SecurityManager } from '../security/manager.js'; import { AuditLogger } from '../security/audit.js'; export declare class VerifyTool { private config; private security; private audit; constructor(config: MCPServerConfig, security: SecurityManager, audit: AuditLogger); execute(toolName: string, args: VerifyArgs): Promise; /** * Verify a run by ID from the vault */ private verifyRunId; /** * Verify a proof file */ private verifyProofFile; /** * Verify signature (simulated) * In a real implementation, this would use actual Ed25519 verification */ private verifySignature; } //# sourceMappingURL=verify.d.ts.map