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