import { EventBase } from './EventBase'; export declare class CalendarEvent extends EventBase { id?: string; groupdId?: string; allDay?: string; start?: any; end?: any; title?: string; url?: string; classNames?: Array; editable?: any; startEditable?: any; duractionEditable?: any; resourceEditable?: any; rendering?: string; overlap?: boolean; constraint?: any; backgroundColor?: string; borderColor?: string; textColor?: string; extendedProps?: any; source?: any; constructor(init?: CalendarEvent); }