import { CalendarType, DaysViewInMonth } from "../config/datePicker-config"; export default class Calendar { private calendarType; setCalendar(type: CalendarType): void; getChunkedDaysInSelectedMonth(currentMonth: number, currentYear: number): DaysViewInMonth[]; private getDaysInSelectedMonth; private fillEmptyDaysInFirstAndLastWeeks; private getDayIndexOfWeek; private spliceIntoChunks; }