import { IsoDate, IsoDateTime, IsoYearMonth } from './iso-types'; declare function isLeapYear(date: IsoDate): boolean; declare function isLeapYear(dateTime: IsoDateTime): boolean; declare function isLeapYear(yearMonth: IsoYearMonth): boolean; declare function isLeapYear(year: number): boolean; export default isLeapYear;