import { ConferenceHistoryEvent } from './ConferenceHistoryEvent';
/** List past conferences on your number */
export interface ConferenceHistory {
    /** The count of connections to the conference */
    countConnections: number;
    /** The count of unique participants of the conference */
    countParticipants: number;
    /** The date the conference began */
    dateBegin: string;
    /** The date the conference end */
    dateEnd: string;
    /** The duration of the conference in seconds */
    duration: number;
    /** The events of the conference (participants joining/left) */
    events: ConferenceHistoryEvent[];
    /** The id of the conference history */
    id: number;
    /** The audio record url if you set recording */
    recordUrl?: string;
}
//# sourceMappingURL=ConferenceHistory.d.ts.map