import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ResponseHistoryCallInProgressEventArgs = { query: string; }; export type ResponseHistoryCallInProgressEvent = { type: "response.history_call.in_progress"; sequenceNumber: number; itemId: string; outputIndex: number; args?: ResponseHistoryCallInProgressEventArgs | undefined; }; /** @internal */ export declare const ResponseHistoryCallInProgressEventArgs$inboundSchema: z.ZodType; /** @internal */ export type ResponseHistoryCallInProgressEventArgs$Outbound = { query: string; }; /** @internal */ export declare const ResponseHistoryCallInProgressEventArgs$outboundSchema: z.ZodType; export declare function responseHistoryCallInProgressEventArgsToJSON(responseHistoryCallInProgressEventArgs: ResponseHistoryCallInProgressEventArgs): string; export declare function responseHistoryCallInProgressEventArgsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ResponseHistoryCallInProgressEvent$inboundSchema: z.ZodType; /** @internal */ export type ResponseHistoryCallInProgressEvent$Outbound = { type: "response.history_call.in_progress"; sequence_number: number; item_id: string; output_index: number; args?: ResponseHistoryCallInProgressEventArgs$Outbound | undefined; }; /** @internal */ export declare const ResponseHistoryCallInProgressEvent$outboundSchema: z.ZodType; export declare function responseHistoryCallInProgressEventToJSON(responseHistoryCallInProgressEvent: ResponseHistoryCallInProgressEvent): string; export declare function responseHistoryCallInProgressEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=responsehistorycallinprogressevent.d.ts.map