export interface CalendarCell { date: Date; text: number; isCurrentMonth: boolean; isToday: boolean; isSelected: boolean; isDisabled: boolean; }