/** * QA360 Report Tools * Sign and manage test reports via MCP */ import { MCPServerConfig, ReportSignArgs, ReportSignResult } from '../types/index.js'; import { SecurityManager } from '../security/manager.js'; import { AuditLogger } from '../security/audit.js'; export declare class ReportSignTool { private config; private security; private audit; constructor(config: MCPServerConfig, security: SecurityManager, audit: AuditLogger); execute(toolName: string, args: ReportSignArgs): Promise; /** * Generate Ed25519 signature (simulated) * In a real implementation, this would use actual cryptographic signing */ private generateSignature; } //# sourceMappingURL=report.d.ts.map