import { type OneShotAgentOutput } from '@vibe-agent-toolkit/agent-schema'; import type { MCPToolResult } from '../types.js'; /** * Translates VAT agent results to MCP tool results */ export declare class ResultTranslator { /** * Convert VAT agent output envelope to MCP tool result */ toMCPResult(agentOutput: OneShotAgentOutput): MCPToolResult; /** * Format success data for MCP text response */ private formatSuccess; /** * Format error for MCP text response */ private formatError; /** * Type guard for conversational reply data */ private isReplyData; } //# sourceMappingURL=result-translator.d.ts.map