import { SchemaRule } from "../../types/rule-types.mjs"; //#region ../@warlock.js/seal/src/rules/date/date-relative-rules.d.ts /** * Within days rule - date must be within X days from now (past or future) */ declare const withinDaysRule: SchemaRule<{ days: number; }>; /** * Within past days rule - date must be within X days in the past */ declare const withinPastDaysRule: SchemaRule<{ days: number; }>; /** * Within future days rule - date must be within X days in the future */ declare const withinFutureDaysRule: SchemaRule<{ days: number; }>; //#endregion export { withinDaysRule, withinFutureDaysRule, withinPastDaysRule }; //# sourceMappingURL=date-relative-rules.d.mts.map