import { MaybeDateInput } from './types.js'; /** * Returns a Date object for the with the input date set to the end of the current year. * @param [inputDate] - A string, Date object or nothing for the current year */ declare function yearEnd(inputDate?: MaybeDateInput): Date; export { yearEnd };