import { StudyStatus } from './study'; export declare enum StudyEventType { USER = "user", AUTOMATIC = "automatic" } export declare enum StudyEventTypeLabels { USER = "User", AUTOMATIC = "Automatic" } export interface StudyEvent { id?: number; create_date: Date; status: StudyStatus; comment: string; event_type: StudyEventType; } //# sourceMappingURL=study-event.d.ts.map