/** Event of a conference (participant left/join) */
export interface ConferenceHistoryEvent {
    /** The caller id of the participant */
    callerid: string;
    /** The date of the conference event */
    date: string;
    /** The nature of the event : left/join */
    type: string;
}
//# sourceMappingURL=ConferenceHistoryEvent.d.ts.map