/**
 * 判断是否是闰年
 * 规则：四年一闰，百年不闰，四百年再闰
 */
declare function isLeapYear(year: number): boolean;

export { isLeapYear };
