/** A time slot for a planned intervention */
export interface PlannedInterventionTimeSlot {
    /** End date for the planned intervention */
    endDate: string;
    /** Start date for the planned intervention */
    startDate: string;
}
//# sourceMappingURL=PlannedInterventionTimeSlot.d.ts.map