/** * Check if given is a string representing a `CronDayOfMonthValue`. * * @category Predicates * @example * ```typescript * isStringDayOfMonthValue("13"); // true * isStringDayOfMonthValue("50"); // false * ``` * @param value Value to check. * @returns Returns `true` if is a string representing a `CronDayOfMonthValue`, `false` otherwise. */ export declare const isStringDayOfMonthValue: ( value: unknown, ) => value is string;