import { CalendarTheme } from './timesheet-bullet-theme.model'; export interface DescriptionDto { id: string; description: string; } export declare enum ReferenceType { PROJECT = "PROJECT", REASON = "REASON" } export interface ReferenceTypeDto extends DescriptionDto { type: ReferenceType; } export interface CalendarThemeDefinition { color: string; calendarTheme: CalendarTheme; } export interface Reason { id: string; description: string; calendarTheme: CalendarTheme; minDuration: number; }