export interface CalendarEvent { title: string; description: string; location: string; startTime: string; endTime: string; allDay: boolean; }