import * as z from "zod"; import { ConditionV3, ConditionV3$Outbound } from "./conditionv3.js"; export type ConditionGroupV3 = { /** * All conditions in this list must be satisfied for the group to be satisfied */ conditions: Array; }; /** @internal */ export declare const ConditionGroupV3$inboundSchema: z.ZodType; /** @internal */ export type ConditionGroupV3$Outbound = { conditions: Array; }; /** @internal */ export declare const ConditionGroupV3$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 ConditionGroupV3$ { /** @deprecated use `ConditionGroupV3$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConditionGroupV3$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConditionGroupV3$Outbound` instead. */ type Outbound = ConditionGroupV3$Outbound; } //# sourceMappingURL=conditiongroupv3.d.ts.map