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