import { SchemaRule } from "../../types/rule-types.mjs"; //#region ../@warlock.js/seal/src/rules/date/date-special-rules.d.ts /** * Birthday rule - valid birthday (not in future, reasonable age) */ declare const birthdayRule: SchemaRule<{ minAge?: number; maxAge?: number; }>; /** * Between age rule - age must be between min and max years */ declare const betweenAgeRule: SchemaRule<{ minAge: number; maxAge: number; }>; /** * Leap year rule - date must be in a leap year */ declare const leapYearRule: SchemaRule; //#endregion export { betweenAgeRule, birthdayRule, leapYearRule }; //# sourceMappingURL=date-special-rules.d.mts.map