import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * MCP approval request item: A request to approve or deny execution of an MCP tool call. */ export type MCPApprovalRequest = { type: "mcp_approval_request"; id: string; arguments: string; name: string; serverLabel: string; }; /** @internal */ export declare const MCPApprovalRequest$inboundSchema: z.ZodType; /** @internal */ export type MCPApprovalRequest$Outbound = { type: "mcp_approval_request"; id: string; arguments: string; name: string; server_label: string; }; /** @internal */ export declare const MCPApprovalRequest$outboundSchema: z.ZodType; export declare function mcpApprovalRequestToJSON(mcpApprovalRequest: MCPApprovalRequest): string; export declare function mcpApprovalRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=mcpapprovalrequest.d.ts.map