import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Parsed JSON body from the agent webhook response when JSON. */ export type AgentReply = {}; export type TestDomainRouteAgentResultDto = { agentId: string; httpStatus: number; /** * Parsed JSON body from the agent webhook response when JSON. */ agentReply?: AgentReply | undefined; latencyMs: number; }; /** @internal */ export declare const AgentReply$inboundSchema: z.ZodType; export declare function agentReplyFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const TestDomainRouteAgentResultDto$inboundSchema: z.ZodType; export declare function testDomainRouteAgentResultDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=testdomainrouteagentresultdto.d.ts.map