/**
 * return the amount of days in the year following the gregorian calendar
 * and leap years
 */
declare function totalDaysInYear(fullYear: any): 366 | 365;
export default totalDaysInYear;
