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