export type DateFnsInputDate = number | Date | string; export type DateFnsWeekIndex = 0 | 1 | 2 | 3 | 4 | 5 | 6; export type DateFnsFirstWeekDays = 1 | 2 | 3 | 4 | 5 | 6 | 7; export type DateFnsRoundingMethod = 'floor' | 'ceil' | 'round'; export type DateFnsUnit = 'second' | 'minute' | 'hour' | 'day' | 'month' | 'year';