import { CalendarMethods as CalendarMethodsType } from '../calendar/typings'; /** * CalendarMethodsLuxon - Luxon implementation of CalendarMethods * * NOTE: Luxon only supports ISO week (Monday as first day of week). * Regardless of the locale parameter, this implementation always uses ISO week. * If you need Sunday-first week support, please use moment or dayjs instead. */ declare const CalendarMethodsLuxon: CalendarMethodsType; export default CalendarMethodsLuxon;