import * as z from "zod"; export type EngineParamBindingValueV2 = { /** * Human readable label to be displayed for user to select */ label: string; /** * If set, this is the literal value of the step parameter */ literal?: string | undefined; /** * If set, this is the reference into the trigger scope that is the value of this parameter */ reference?: string | undefined; }; /** @internal */ export declare const EngineParamBindingValueV2$inboundSchema: z.ZodType; /** @internal */ export type EngineParamBindingValueV2$Outbound = { label: string; literal?: string | undefined; reference?: string | undefined; }; /** @internal */ export declare const EngineParamBindingValueV2$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 EngineParamBindingValueV2$ { /** @deprecated use `EngineParamBindingValueV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EngineParamBindingValueV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EngineParamBindingValueV2$Outbound` instead. */ type Outbound = EngineParamBindingValueV2$Outbound; } //# sourceMappingURL=engineparambindingvaluev2.d.ts.map