/// export interface IEventList { color?: string; courseName?: string; day: string; date: string; duration?: number; name: string; hasNotification?: boolean; headquartersAddress?: string | null; onClick?: () => void; showCourse?: boolean; showUnit?: boolean; time: string; text: string; type: string; unitName?: string; } export declare const EventsList: ({ courseName, color, day, date, duration, name, hasNotification, headquartersAddress, onClick, showCourse, showUnit, time, text, type, unitName, }: IEventList) => JSX.Element; //# sourceMappingURL=EventsList.d.ts.map