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