/** * Response helpers — serialize domain results to MCP tool result format. * * Returns plain objects matching the SDK's expected CallToolResult shape * (with index signature compatibility). */ export declare function toCallToolResult(data: unknown): { content: { type: "text"; text: string; }[]; }; export declare function toErrorResult(error: { message: string; code?: string; remediation?: string; retryable?: boolean; }): { content: { type: "text"; text: string; }[]; isError: true; }; //# sourceMappingURL=response.d.ts.map