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 DecideAgentRunMcpApprovalRequest = { agentId: string; runId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; decideAgentRunMcpApprovalRequest: components.DecideAgentRunMcpApprovalRequest; }; /** @internal */ export declare const DecideAgentRunMcpApprovalRequest$inboundSchema: z.ZodType; /** @internal */ export type DecideAgentRunMcpApprovalRequest$Outbound = { agent_id: string; run_id: string; "X-On-Behalf-Of"?: string | undefined; DecideAgentRunMcpApprovalRequest: components.DecideAgentRunMcpApprovalRequest$Outbound; }; /** @internal */ export declare const DecideAgentRunMcpApprovalRequest$outboundSchema: z.ZodType; export declare function decideAgentRunMcpApprovalRequestToJSON(decideAgentRunMcpApprovalRequest: DecideAgentRunMcpApprovalRequest): string; export declare function decideAgentRunMcpApprovalRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=decideagentrunmcpapproval.d.ts.map