import * as z from "zod"; import { EngineParamBindingValueV2, EngineParamBindingValueV2$Outbound } from "./engineparambindingvaluev2.js"; export type EngineParamBindingV2 = { /** * If array_value is set, this helps render the values */ arrayValue?: Array | undefined; value?: EngineParamBindingValueV2 | undefined; }; /** @internal */ export declare const EngineParamBindingV2$inboundSchema: z.ZodType; /** @internal */ export type EngineParamBindingV2$Outbound = { array_value?: Array | undefined; value?: EngineParamBindingValueV2$Outbound | undefined; }; /** @internal */ export declare const EngineParamBindingV2$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 EngineParamBindingV2$ { /** @deprecated use `EngineParamBindingV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EngineParamBindingV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EngineParamBindingV2$Outbound` instead. */ type Outbound = EngineParamBindingV2$Outbound; } //# sourceMappingURL=engineparambindingv2.d.ts.map