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 ToolExecutionDoneEventName = BuiltInConnectors | string; export type ToolExecutionDoneEvent = { type: "tool.execution.done"; createdAt?: Date | undefined; outputIndex: number; id: string; name: BuiltInConnectors | string; info?: { [k: string]: any; } | undefined; }; /** @internal */ export declare const ToolExecutionDoneEventName$inboundSchema: z.ZodType; export declare function toolExecutionDoneEventNameFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ToolExecutionDoneEvent$inboundSchema: z.ZodType; export declare function toolExecutionDoneEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=toolexecutiondoneevent.d.ts.map