import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { WebSearchAction, WebSearchAction$Outbound } from "./websearchaction.js"; /** * Web search call item: A web-search tool-call record containing the executed action and status. */ export type WebSearchToolCall = { type: "web_search_call"; id: string; action: WebSearchAction; status: string; }; /** @internal */ export declare const WebSearchToolCall$inboundSchema: z.ZodType; /** @internal */ export type WebSearchToolCall$Outbound = { type: "web_search_call"; id: string; action: WebSearchAction$Outbound; status: string; }; /** @internal */ export declare const WebSearchToolCall$outboundSchema: z.ZodType; export declare function webSearchToolCallToJSON(webSearchToolCall: WebSearchToolCall): string; export declare function webSearchToolCallFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=websearchtoolcall.d.ts.map