import { MaybeDateInput } from './types.js'; /** * Returns a new date object 1/n hours after the original one. * @param [inputDate] - A date to increment or null to increment from the current time. * @param [count] - The quantity to add. */ declare function addHour(inputDate?: MaybeDateInput, count?: number): Date; export { addHour };