/** * Check if given is a string representing a `CronMonthValue`. * * @category Predicates * @example * ```typescript * isStringMonthValue("10"); // true * isStringMonthValue("OCT"); // true * isStringMonthValue("oct"); // true * isStringMonthValue("OCTOBER"); // false * isStringMonthValue("50"); // false * isStringMonthValue("INVALID"); // false * ``` * @param value Value to check. * @returns Returns `true` if is a string representing a `CronMonthValue`, `false` otherwise. */ export declare const isStringMonthValue: (value: unknown) => boolean;