/** Conference realtime informations structure */
export interface ConferenceInformations {
    /** The date when the conference began */
    dateStart: string;
    /** Whether or not the conference room is locked */
    locked: boolean;
    /** The current participants count in your conference room */
    membersCount: number;
}
//# sourceMappingURL=ConferenceInformations.d.ts.map