export type PartitiveCount = 'exactly_one' | 'at_least_one' | 'multiple'; export declare const PARTITIVE_COUNT: import("./enum.js").EnumBundle<{ readonly EXACTLY_ONE: "exactly_one"; readonly AT_LEAST_ONE: "at_least_one"; readonly MULTIPLE: "multiple"; }>; export declare const PARTITIVE_COUNT_VALUES: readonly ("exactly_one" | "at_least_one" | "multiple")[]; export declare const DEFAULT_COUNT: PartitiveCount; export declare const isValidCount: (value: unknown) => value is "exactly_one" | "at_least_one" | "multiple"; //# sourceMappingURL=partitive-count.d.ts.map