export declare type CalendarDataItem = { date: string; color: string[]; isExcluded: boolean; schedule_ids?: number[]; [key: string]: any; }; export declare type CalendarItemProps = { date: string; status?: string | null; disabled?: boolean; select?: boolean; onClick?: (date: string) => void; showMonth?: boolean; dateText: string; week?: string; };