/** * Returns the number of hours between two dates. * * This function takes two dates and calculates the number of hours * between them. The returned value is an integer and is always * positive (i.e., the order of the dates does not matter). */ export declare function hoursBetween(date1: Date | string | number, date2: Date | string | number): number;