/** * Adds the given number of hours to the given date and returns a new Date object. * * @deprecated Use {@link shiftHours} instead. */ export declare function addHours(hours: number, date?: Date): Date; /** * Shifts the given date by a specified number of hours and returns a new Date object. * * Can take both positive and negative values for hours. * * @param {number} hours - The number of hours to add to the date. * @param {Date} [date=new Date()] - The date to add the hours to. Defaults to the current date. * @returns {Date} - A new Date object with the given number of hours added. */ export declare function shiftHours(hours: number, date?: Date | string | number): Date;