import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Args = { query: string; location?: string | undefined; language?: string | undefined; country?: string | undefined; }; export type ResponseWebSearchCallInProgressEvent = { type: "response.web_search_call.in_progress"; sequenceNumber: number; itemId: string; outputIndex: number; args?: Args | undefined; }; /** @internal */ export declare const Args$inboundSchema: z.ZodType; /** @internal */ export type Args$Outbound = { query: string; location?: string | undefined; language?: string | undefined; country?: string | undefined; }; /** @internal */ export declare const Args$outboundSchema: z.ZodType; export declare function argsToJSON(args: Args): string; export declare function argsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ResponseWebSearchCallInProgressEvent$inboundSchema: z.ZodType; /** @internal */ export type ResponseWebSearchCallInProgressEvent$Outbound = { type: "response.web_search_call.in_progress"; sequence_number: number; item_id: string; output_index: number; args?: Args$Outbound | undefined; }; /** @internal */ export declare const ResponseWebSearchCallInProgressEvent$outboundSchema: z.ZodType; export declare function responseWebSearchCallInProgressEventToJSON(responseWebSearchCallInProgressEvent: ResponseWebSearchCallInProgressEvent): string; export declare function responseWebSearchCallInProgressEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=responsewebsearchcallinprogressevent.d.ts.map