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