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