import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateAgentRunRequest = { agentId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; createAgentRunRequest: components.CreateAgentRunRequest; }; /** @internal */ export declare const CreateAgentRunRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateAgentRunRequest$Outbound = { agent_id: string; "X-On-Behalf-Of"?: string | undefined; CreateAgentRunRequest: components.CreateAgentRunRequest$Outbound; }; /** @internal */ export declare const CreateAgentRunRequest$outboundSchema: z.ZodType; export declare function createAgentRunRequestToJSON(createAgentRunRequest: CreateAgentRunRequest): string; export declare function createAgentRunRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createagentrun.d.ts.map