import { MaybeDateInput } from './types.js'; /** * Returns a Date object for the with the input date set to the last day of * the current month. Does not change the time. * @param [inputDate] - A string, Date object or nothing for the current month */ declare function monthEnd(inputDate?: MaybeDateInput): Date; export { monthEnd };