/** Conference service */
export interface ConferenceParticipants {
    /** The arrival datetime of the participant in the conference. */
    arrivalDateTime: string;
    /** The caller name of the participant */
    callerName: string;
    /** The caller number of the participant */
    callerNumber: string;
    /** The current level of the participant audio transmission */
    energy: number;
    /** Whether the participant is active in the room */
    floor: boolean;
    /** Whether the participant can hear the conference */
    hear: boolean;
    /** The id of the participant */
    id: number;
    /** Whether the participant can talk in the conference */
    speak: boolean;
    /** Whether the participant is talking */
    talking: boolean;
}
//# sourceMappingURL=ConferenceParticipants.d.ts.map