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