import { PlannedChangeStatusEnum } from '../PlannedChangeStatusEnum';
import { PlannedInterventionTypeEnum } from '../PlannedInterventionTypeEnum';
/** Planned change on the server */
export interface PlannedChange {
    /** Expected end date for this change */
    expectedEndDate: string;
    /** UUID of the change */
    id: string;
    /** Status of the change */
    status: PlannedChangeStatusEnum;
    /** Operation purpose */
    type: PlannedInterventionTypeEnum;
    /** Wanted start date for this change */
    wantedStartDate: string;
}
//# sourceMappingURL=PlannedChange.d.ts.map