import { SchedulerCategoryEnum } from './SchedulerCategoryEnum';
/** Scheduled event */
export interface SchedulerEvent {
    /** The category of the event */
    categories: SchedulerCategoryEnum;
    /** The ending date of the event */
    dateEnd: string;
    /** The beginning date of the event */
    dateStart: string;
    /**  */
    description?: string;
    /**  */
    title: string;
    /** The unique ICS event identifier */
    uid: string;
}
//# sourceMappingURL=SchedulerEvent.d.ts.map