export type Priority = "low" | "medium" | "high";
export type EventType = "meeting" | "session" | "blocked" | "";
export type CalendarEvent = {
    id: string;
    priority: Priority;
    type: EventType;
    start_date: string;
    end_date: string;
    event: string;
    reference: string;
};
