import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ToolConfiguration, ToolConfiguration$Outbound } from "./toolconfiguration.js"; export type WebSearchTool = { toolConfiguration?: ToolConfiguration | null | undefined; type: "web_search"; }; /** @internal */ export declare const WebSearchTool$inboundSchema: z.ZodType; /** @internal */ export type WebSearchTool$Outbound = { tool_configuration?: ToolConfiguration$Outbound | null | undefined; type: "web_search"; }; /** @internal */ export declare const WebSearchTool$outboundSchema: z.ZodType; export declare function webSearchToolToJSON(webSearchTool: WebSearchTool): string; export declare function webSearchToolFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=websearchtool.d.ts.map