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