import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AgentRun } from "./agentrun.js"; import { Message } from "./message.js"; export type AgentRunWaitResponse = { run?: AgentRun | undefined; /** * The messages returned by the run. */ messages?: Array | undefined; }; /** @internal */ export declare const AgentRunWaitResponse$inboundSchema: z.ZodType; export declare function agentRunWaitResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=agentrunwaitresponse.d.ts.map