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