import * as z from "zod"; import { ExpressionElseBranchV2, ExpressionElseBranchV2$Outbound } from "./expressionelsebranchv2.js"; import { ExpressionOperationV2, ExpressionOperationV2$Outbound } from "./expressionoperationv2.js"; import { ReturnsMetaV2, ReturnsMetaV2$Outbound } from "./returnsmetav2.js"; export type ExpressionV2 = { elseBranch?: ExpressionElseBranchV2 | undefined; /** * The human readable label of the expression */ label: string; operations: Array; /** * A short ID that can be used to reference the expression */ reference: string; returns: ReturnsMetaV2; /** * The root reference for this expression (i.e. where the expression starts) */ rootReference: string; }; /** @internal */ export declare const ExpressionV2$inboundSchema: z.ZodType; /** @internal */ export type ExpressionV2$Outbound = { else_branch?: ExpressionElseBranchV2$Outbound | undefined; label: string; operations: Array; reference: string; returns: ReturnsMetaV2$Outbound; root_reference: string; }; /** @internal */ export declare const ExpressionV2$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 ExpressionV2$ { /** @deprecated use `ExpressionV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ExpressionV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ExpressionV2$Outbound` instead. */ type Outbound = ExpressionV2$Outbound; } //# sourceMappingURL=expressionv2.d.ts.map