import type { CronField } from "../cronTypes.js"; /** * Checks if a value matches a cron field. * * Expects: a parsed CronField and a numeric value. * Returns: true if the value matches (field is "any" or value is in the set). */ export declare function cronFieldMatch(field: CronField, value: number): boolean; //# sourceMappingURL=cronFieldMatch.d.ts.map