/** * Calculates the number of hours since the given date. * * @param {Date} date - The date to calculate the hours since. * @returns {number} The number of hours since the given date. */ export declare function hoursSince(date: Date | string | number): number;