import { MaybeDateInput } from './types.js'; /** * Gets the what day of the year a given date is. For example, August 1st is * the 213th day of the year on non- years and 214th on leap years. * @param [inputDate] - The input date or nothing for the current day. */ declare function dayOfYear(inputDate?: MaybeDateInput): number; export { dayOfYear };