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