import * as z from "zod/v4-mini"; export type ResponsesFunctionCallInputItem = { id: string; type: "function_call"; callId: string; name: string; arguments: string; status?: string | undefined; [additionalProperties: string]: unknown; }; /** @internal */ export type ResponsesFunctionCallInputItem$Outbound = { id: string; type: "function_call"; call_id: string; name: string; arguments: string; status?: string | undefined; [additionalProperties: string]: unknown; }; /** @internal */ export declare const ResponsesFunctionCallInputItem$outboundSchema: z.ZodMiniType; export declare function responsesFunctionCallInputItemToJSON(responsesFunctionCallInputItem: ResponsesFunctionCallInputItem): string; //# sourceMappingURL=responses-function-call-input-item.d.ts.map