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