import { MaybeDateInput } from './types.js'; /** * Returns a Date object for end of the given hour. * @param [inputDate] - A string, Date object or nothing for the current time */ declare function hourEnd(inputDate?: MaybeDateInput): Date; export { hourEnd };