import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * MCP tool choice: Forces an MCP server, optionally narrowed to a specific MCP tool name. */ export type MCPToolChoice = { type: "mcp"; serverLabel: string; name?: string | undefined; }; /** @internal */ export declare const MCPToolChoice$inboundSchema: z.ZodType; /** @internal */ export type MCPToolChoice$Outbound = { type: "mcp"; server_label: string; name?: string | undefined; }; /** @internal */ export declare const MCPToolChoice$outboundSchema: z.ZodType; export declare function mcpToolChoiceToJSON(mcpToolChoice: MCPToolChoice): string; export declare function mcpToolChoiceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=mcptoolchoice.d.ts.map