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