import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
import { BuiltInConnectors } from "./builtinconnectors.js";
export type ToolExecutionStartedEventName = BuiltInConnectors | string;
export type ToolExecutionStartedEvent = {
    type?: "tool.execution.started" | undefined;
    createdAt?: Date | undefined;
    outputIndex: number | undefined;
    id: string;
    name: BuiltInConnectors | string;
    arguments: string;
};
/** @internal */
export declare const ToolExecutionStartedEventName$inboundSchema: z.ZodType<ToolExecutionStartedEventName, z.ZodTypeDef, unknown>;
export declare function toolExecutionStartedEventNameFromJSON(jsonString: string): SafeParseResult<ToolExecutionStartedEventName, SDKValidationError>;
/** @internal */
export declare const ToolExecutionStartedEvent$inboundSchema: z.ZodType<ToolExecutionStartedEvent, z.ZodTypeDef, unknown>;
export declare function toolExecutionStartedEventFromJSON(jsonString: string): SafeParseResult<ToolExecutionStartedEvent, SDKValidationError>;
//# sourceMappingURL=toolexecutionstartedevent.d.ts.map