import { SchemaRule } from "../../types/rule-types.mjs"; //#region ../@warlock.js/seal/src/rules/common/enum.d.ts /** * Enum rule - value must be one of the enum values */ declare const enumRule: SchemaRule<{ enum: any; }>; /** * In rule - value must be in the given array */ declare const inRule: SchemaRule<{ values: any[]; }>; /** * Allowed values rule - value must be one of allowed values */ declare const allowedValuesRule: SchemaRule<{ allowedValues: any[]; }>; /** * Not allowed values rule - value must not be in forbidden list */ declare const notAllowedValuesRule: SchemaRule<{ notAllowedValues: any[]; }>; //#endregion export { allowedValuesRule, enumRule, inRule, notAllowedValuesRule }; //# sourceMappingURL=enum.d.mts.map