import * as z from "zod"; import { EngineParamBindingV3, EngineParamBindingV3$Outbound } from "./engineparambindingv3.js"; export type StepConfig = { /** * Reference to the loop variable to run this step over */ forEach?: string | undefined; /** * Unique ID of this step in a workflow */ id: string; /** * Human readable identifier for this step */ label: string; /** * Unique name of the step in the engine */ name: string; /** * Bindings for the step parameters */ paramBindings: Array; }; /** @internal */ export declare const StepConfig$inboundSchema: z.ZodType; /** @internal */ export type StepConfig$Outbound = { for_each?: string | undefined; id: string; label: string; name: string; param_bindings: Array; }; /** @internal */ export declare const StepConfig$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace StepConfig$ { /** @deprecated use `StepConfig$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `StepConfig$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `StepConfig$Outbound` instead. */ type Outbound = StepConfig$Outbound; } //# sourceMappingURL=stepconfig.d.ts.map