import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ResponseCustomToolCallInputDoneEvent = { type: "response.custom_tool_call_input.done"; sequenceNumber: number; itemId: string; outputIndex: number; input: string; }; /** @internal */ export declare const ResponseCustomToolCallInputDoneEvent$inboundSchema: z.ZodType; /** @internal */ export type ResponseCustomToolCallInputDoneEvent$Outbound = { type: "response.custom_tool_call_input.done"; sequence_number: number; item_id: string; output_index: number; input: string; }; /** @internal */ export declare const ResponseCustomToolCallInputDoneEvent$outboundSchema: z.ZodType; export declare function responseCustomToolCallInputDoneEventToJSON(responseCustomToolCallInputDoneEvent: ResponseCustomToolCallInputDoneEvent): string; export declare function responseCustomToolCallInputDoneEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=responsecustomtoolcallinputdoneevent.d.ts.map