export interface SubscribedVideoEvent {
    streams: StreamsMap;
    description: RTCSessionDescriptionInit;
}
export interface UpdatedVideoEvent {
    streams: StreamsMap | null;
    description: RTCSessionDescriptionInit;
}
export interface StreamsMap {
    [mid: string]: {
        participant: string;
        type: string;
    };
}
export interface SubscribeVideoConferenceErrorEvent {
    status: {
        name: string;
        description: string;
    };
}
