import { SchemaRule } from "../../types/rule-types.mjs"; import { WeekDay } from "../../types/date-types.mjs"; //#region ../@warlock.js/seal/src/rules/date/date-day-rules.d.ts /** * Weekend rule - date must be Saturday or Sunday */ declare const weekendRule: SchemaRule; /** * Weekday rule - date must be Monday through Friday */ declare const weekdayRule: SchemaRule; /** * Weekdays rule - date must be one of specified weekdays */ declare const weekdaysRule: SchemaRule<{ days: WeekDay[]; }>; /** * Business day rule - date must be Monday-Friday (no weekends) */ declare const businessDayRule: SchemaRule; //#endregion export { businessDayRule, weekdayRule, weekdaysRule, weekendRule }; //# sourceMappingURL=date-day-rules.d.mts.map