import * as z from "zod"; export type ConditionOperationV2 = { /** * Human readable label to be displayed for user to select */ label: string; /** * Unique identifier for this option */ value: string; }; /** @internal */ export declare const ConditionOperationV2$inboundSchema: z.ZodType; /** @internal */ export type ConditionOperationV2$Outbound = { label: string; value: string; }; /** @internal */ export declare const ConditionOperationV2$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 ConditionOperationV2$ { /** @deprecated use `ConditionOperationV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConditionOperationV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConditionOperationV2$Outbound` instead. */ type Outbound = ConditionOperationV2$Outbound; } //# sourceMappingURL=conditionoperationv2.d.ts.map