import { DateInput } from './types.js'; /** * Adds the specified number of hours to a given date input, returning a new Date object. * * A negative number of hours can be passed to subtract hours. */ declare function addHours(date: DateInput, hours: number): Date; export { addHours };