import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ResponseFunctionCallArgumentsDoneEvent = { type: "response.function_call_arguments.done"; sequenceNumber: number; itemId: string; outputIndex: number; name: string; arguments: string; }; /** @internal */ export declare const ResponseFunctionCallArgumentsDoneEvent$inboundSchema: z.ZodType; /** @internal */ export type ResponseFunctionCallArgumentsDoneEvent$Outbound = { type: "response.function_call_arguments.done"; sequence_number: number; item_id: string; output_index: number; name: string; arguments: string; }; /** @internal */ export declare const ResponseFunctionCallArgumentsDoneEvent$outboundSchema: z.ZodType; export declare function responseFunctionCallArgumentsDoneEventToJSON(responseFunctionCallArgumentsDoneEvent: ResponseFunctionCallArgumentsDoneEvent): string; export declare function responseFunctionCallArgumentsDoneEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=responsefunctioncallargumentsdoneevent.d.ts.map