import { SchemaRule } from "../../types/rule-types.mjs"; import { BaseValidator } from "../../validators/base-validator.mjs"; //#region ../@warlock.js/seal/src/rules/core/union.d.ts /** * Union rule - value must match at least one of the provided validators */ declare const unionRule: SchemaRule<{ validators: BaseValidator[]; }>; //#endregion export { unionRule }; //# sourceMappingURL=union.d.mts.map