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