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