export declare type CalendarType = 'day' | 'week' | 'month' | 'custom'; export declare type CellType = 'prev' | 'current' | 'next'; export declare type CellItem = { type: CellType; text: string; day: string; isSelected: boolean; };