import type { eRecurring } from "../types/type"; export declare class CalendarEvent { title: string; description?: string; start: Date | string; end?: Date | string; isAllDay?: boolean; recurring?: false | eRecurring; color?: string; meta?: any; uuid?: string; draggable?: boolean; [key: string]: any; constructor(data: any); }