import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ResponseHistoryCallCompletedEvent = { type: "response.history_call.completed"; sequenceNumber: number; itemId: string; outputIndex: number; functionCallOutput?: string | undefined; }; /** @internal */ export declare const ResponseHistoryCallCompletedEvent$inboundSchema: z.ZodType; /** @internal */ export type ResponseHistoryCallCompletedEvent$Outbound = { type: "response.history_call.completed"; sequence_number: number; item_id: string; output_index: number; function_call_output?: string | undefined; }; /** @internal */ export declare const ResponseHistoryCallCompletedEvent$outboundSchema: z.ZodType; export declare function responseHistoryCallCompletedEventToJSON(responseHistoryCallCompletedEvent: ResponseHistoryCallCompletedEvent): string; export declare function responseHistoryCallCompletedEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=responsehistorycallcompletedevent.d.ts.map