/**
 * returns the total amount of days in the month (considering leap years)
 */
declare function totalDaysInMonth(fullYear: number, monthIndex: number): number;
declare function totalDaysInMonth(fullYear: Date): number;
export default totalDaysInMonth;
