import * as z from "zod/v4"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const FunctionCallEventConfirmationStatus: { readonly Pending: "pending"; readonly Allowed: "allowed"; readonly Denied: "denied"; }; export type FunctionCallEventConfirmationStatus = OpenEnum; export type FunctionCallEvent = { type: "function.call.delta"; createdAt?: Date | undefined; outputIndex: number; id: string; model?: string | null | undefined; agentId?: string | null | undefined; name: string; toolCallId: string; arguments: string; confirmationStatus?: FunctionCallEventConfirmationStatus | null | undefined; }; /** @internal */ export declare const FunctionCallEventConfirmationStatus$inboundSchema: z.ZodType; /** @internal */ export declare const FunctionCallEvent$inboundSchema: z.ZodType; export declare function functionCallEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=functioncallevent.d.ts.map