import * as z from "zod"; export type EngineParamBindingValueV3 = { /** * 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 EngineParamBindingValueV3$inboundSchema: z.ZodType; /** @internal */ export type EngineParamBindingValueV3$Outbound = { label: string; literal?: string | undefined; reference?: string | undefined; }; /** @internal */ export declare const EngineParamBindingValueV3$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 EngineParamBindingValueV3$ { /** @deprecated use `EngineParamBindingValueV3$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EngineParamBindingValueV3$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EngineParamBindingValueV3$Outbound` instead. */ type Outbound = EngineParamBindingValueV3$Outbound; } //# sourceMappingURL=engineparambindingvaluev3.d.ts.map