import type { CronSecondsValue } from "../types/CronSecondsValue.js"; import type { CronValueParser } from "../types/CronValueParser.js"; /** * Parses `CronSecondsValue` into a string. * * @category Parsers * @example * ```typescript * parseCronSecondsValue(10); // "10" * parseCronSecondsValue(59); // "59" * parseCronSecondsValue(99); // undefined * ``` * @param source `CronSecondsValue` to be parsed. * @returns A string or `undefined` if invalid. */ export declare const parseCronSecondsValue: CronValueParser;