import type { CronRange } from "../types/CronRange.js"; import type { CronValueParser } from "../types/CronValueParser.js"; /** * Parses `CronRange` into a string. * * @category Parsers * @example * ```typescript * parseCronRangeSeconds({ from: 13, to: 10 }); // "13-10" * parseCronRangeSeconds({ from: 999, to: 999 }); // undefined * ``` * @param parser `CronValueParser` for `CronRange`. * @returns Curried function with `parser` in context. */ export declare const parseCronRange: ( parser: CronValueParser, ) => (source: CronRange) => string | undefined;