import * as z from "zod"; import { EngineParamBindingPayloadV2, EngineParamBindingPayloadV2$Outbound } from "./engineparambindingpayloadv2.js"; export type StepConfigPayload = { /** * Reference to an expression that returns resources to run this step over */ forEach?: string | undefined; /** * Unique ID of this step in a workflow. This must be a valid ULID. */ id: string; /** * Unique name of the step in the engine */ name: string; /** * List of parameter bindings */ paramBindings: Array; }; /** @internal */ export declare const StepConfigPayload$inboundSchema: z.ZodType; /** @internal */ export type StepConfigPayload$Outbound = { for_each?: string | undefined; id: string; name: string; param_bindings: Array; }; /** @internal */ export declare const StepConfigPayload$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 StepConfigPayload$ { /** @deprecated use `StepConfigPayload$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `StepConfigPayload$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `StepConfigPayload$Outbound` instead. */ type Outbound = StepConfigPayload$Outbound; } //# sourceMappingURL=stepconfigpayload.d.ts.map