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