import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BuiltInConnectors } from "./builtinconnectors.js"; export type ToolExecutionDeltaEventName = BuiltInConnectors | string; export type ToolExecutionDeltaEvent = { type: "tool.execution.delta"; createdAt?: Date | undefined; outputIndex: number; id: string; name: BuiltInConnectors | string; arguments: string; }; /** @internal */ export declare const ToolExecutionDeltaEventName$inboundSchema: z.ZodType; export declare function toolExecutionDeltaEventNameFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ToolExecutionDeltaEvent$inboundSchema: z.ZodType; export declare function toolExecutionDeltaEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=toolexecutiondeltaevent.d.ts.map