import * as z from "zod"; import { ExpressionElseBranchV3, ExpressionElseBranchV3$Outbound } from "./expressionelsebranchv3.js"; import { ExpressionOperationV3, ExpressionOperationV3$Outbound } from "./expressionoperationv3.js"; import { ReturnsMetaV2, ReturnsMetaV2$Outbound } from "./returnsmetav2.js"; export type ExpressionV3 = { elseBranch?: ExpressionElseBranchV3 | 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 ExpressionV3$inboundSchema: z.ZodType; /** @internal */ export type ExpressionV3$Outbound = { else_branch?: ExpressionElseBranchV3$Outbound | undefined; label: string; operations: Array; reference: string; returns: ReturnsMetaV2$Outbound; root_reference: string; }; /** @internal */ export declare const ExpressionV3$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 ExpressionV3$ { /** @deprecated use `ExpressionV3$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ExpressionV3$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ExpressionV3$Outbound` instead. */ type Outbound = ExpressionV3$Outbound; } //# sourceMappingURL=expressionv3.d.ts.map