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