import { CALENDAR_VIEWS } from "./bl-calendar.constant"; export type DayValues = 0 | 1 | 2 | 3 | 4 | 5 | 6; export type CalendarView = CALENDAR_VIEWS; export type CalendarType = "single" | "multiple" | "range"; export type CalendarDay = { value: number; name: string; }; export type RangePickerDates = { startDate?: Date; endDate?: Date; }; export type Calendar = Map; //# sourceMappingURL=bl-calendar.types.d.ts.map