import * as z from "zod"; import { EngineParamBindingValuePayloadV2, EngineParamBindingValuePayloadV2$Outbound } from "./engineparambindingvaluepayloadv2.js"; export type EngineParamBindingPayloadV2 = { /** * If set, this is the array value of the step parameter */ arrayValue?: Array | undefined; value?: EngineParamBindingValuePayloadV2 | undefined; }; /** @internal */ export declare const EngineParamBindingPayloadV2$inboundSchema: z.ZodType; /** @internal */ export type EngineParamBindingPayloadV2$Outbound = { array_value?: Array | undefined; value?: EngineParamBindingValuePayloadV2$Outbound | undefined; }; /** @internal */ export declare const EngineParamBindingPayloadV2$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 EngineParamBindingPayloadV2$ { /** @deprecated use `EngineParamBindingPayloadV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EngineParamBindingPayloadV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EngineParamBindingPayloadV2$Outbound` instead. */ type Outbound = EngineParamBindingPayloadV2$Outbound; } //# sourceMappingURL=engineparambindingpayloadv2.d.ts.map