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