import type { CronField } from "../cronTypes.js"; /** * Parses a single cron field (minute, hour, day, month, or weekday). * * Expects: field string and valid min/max range for that field. * Returns: CronField with values set, or null if invalid. */ export declare function cronFieldParse(field: string, min: number, max: number): CronField | null; //# sourceMappingURL=cronFieldParse.d.ts.map