import { CalendarEventAction } from 'angular-calendar'; import { EventoCalendarioModel } from './eventoCalendario.model'; export declare class CalendarEventModel { id: any; start: Date; end?: Date; title: string; color: { primary: string; secondary: string; }; actions?: CalendarEventAction[]; allDay?: boolean; cssClass?: string; resizable?: { beforeStart?: boolean; afterEnd?: boolean; }; draggable?: boolean; meta?: { location: string; notes: string; }; motivoCancelarEvento?: string; estatus?: any; constructor(data: EventoCalendarioModel); }