/** * Returns true if the given date is tomorrow, false otherwise. * * @param {Date} date The date to check. * @returns {boolean} True if the given date is tomorrow. */ export declare function isTomorrow(date: Date | string | number): boolean;