import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; /** * Event emitted when function call arguments streaming is complete */ export type FunctionCallArgsDoneEvent = { arguments: string; itemId: string; name: string; outputIndex: number; sequenceNumber: number; type: "response.function_call_arguments.done"; }; /** @internal */ export declare const FunctionCallArgsDoneEvent$inboundSchema: z.ZodType; export declare function functionCallArgsDoneEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=functioncallargsdoneevent.d.ts.map