/** * Checks if the given date is today. * * @example * isToday(new Date()) // true * * @param date The date to check. * @returns True if the date is today, false otherwise. */ export declare function isToday(date: Date | string | number | null): boolean;