import { OperatorTypeEnum } from './OperatorTypeEnum';
/** Detected incident */
export interface Incident {
    /**  */
    comment: string;
    /** Estimated start date */
    creationDate: string;
    /** Department list */
    departments: string[];
    /** Estimated end date */
    endDate?: string;
    /** ID of the incident */
    id: number;
    /** NRA list */
    nra: string[];
    /** Operator */
    operators: OperatorTypeEnum[];
    /** Task ID on travaux.ovh.com */
    taskId?: number;
    /**  */
    taskReference?: string;
}
//# sourceMappingURL=Incident.d.ts.map