import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ResponseFileSearchCallSearchingEvent = { type: "response.file_search_call.searching"; sequenceNumber: number; itemId: string; outputIndex: number; }; /** @internal */ export declare const ResponseFileSearchCallSearchingEvent$inboundSchema: z.ZodType; /** @internal */ export type ResponseFileSearchCallSearchingEvent$Outbound = { type: "response.file_search_call.searching"; sequence_number: number; item_id: string; output_index: number; }; /** @internal */ export declare const ResponseFileSearchCallSearchingEvent$outboundSchema: z.ZodType; export declare function responseFileSearchCallSearchingEventToJSON(responseFileSearchCallSearchingEvent: ResponseFileSearchCallSearchingEvent): string; export declare function responseFileSearchCallSearchingEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=responsefilesearchcallsearchingevent.d.ts.map