import type { CronNearestDayOfMonth } from "../types/CronNearestDayOfMonth.js"; /** * Check if given is `CronNearestDayOfMonth`. * * @category Predicates * @example * ```typescript * isCronNearestDayOfMonth({ nearest: 10 }); // true * isCronNearestDayOfMonth({ nearest: 100 }); // false * ``` * @param value Value to check. * @returns Returns `true` if is `CronNearestDayOfMonth`, `false` otherwise. */ export declare const isCronNearestDayOfMonth: ( value: unknown, ) => value is CronNearestDayOfMonth;