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