export declare enum CalendarType { Information = "#1e90ff", Warning = "#e3bc08", Important = "#ad2121" } export interface CalendarData { id: string | number; start: Date; end: Date; title: string; type: CalendarType; url: string; }