import * as z from "zod"; export type StepConfigSlim = { /** * Human readable identifier for this step */ label: string; /** * Unique name of the step in the engine */ name: string; }; /** @internal */ export declare const StepConfigSlim$inboundSchema: z.ZodType; /** @internal */ export type StepConfigSlim$Outbound = { label: string; name: string; }; /** @internal */ export declare const StepConfigSlim$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 StepConfigSlim$ { /** @deprecated use `StepConfigSlim$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `StepConfigSlim$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `StepConfigSlim$Outbound` instead. */ type Outbound = StepConfigSlim$Outbound; } //# sourceMappingURL=stepconfigslim.d.ts.map