import { SchemaRule } from "../../types/rule-types.mjs"; //#region ../@warlock.js/seal/src/rules/date/date-comparison-rules.d.ts /** * Between dates rule - date must be between start and end dates */ declare const betweenDatesRule: SchemaRule<{ startDate: Date; endDate: Date; }>; /** * Today rule - date must be exactly today */ declare const todayRule: SchemaRule; /** * Past rule - date must be in the past */ declare const pastRule: SchemaRule; /** * Future rule - date must be in the future */ declare const futureRule: SchemaRule; /** * After today rule - date must be after today (not including today) */ declare const afterTodayRule: SchemaRule; //#endregion export { afterTodayRule, betweenDatesRule, futureRule, pastRule, todayRule }; //# sourceMappingURL=date-comparison-rules.d.mts.map