/** Represents a time slot for a meeting */
export interface MeetingSlot {
    /** End date */
    endDate: string;
    /** Represent a meeting id for a fiber collect operator */
    slotId?: string;
    /** Start date */
    startDate: string;
    /** An opaque string that represents an intervention unit */
    uiCode?: string;
}
//# sourceMappingURL=MeetingSlot.d.ts.map