import { MaybeDateInput } from './types.js'; /** * Get the number of days in the given date’s year. * @param [inputDate] - A string, Date object or nothing for the current year */ declare function yearDays(inputDate?: MaybeDateInput): number; export { yearDays };