import { Participant } from "../../util/Participant";
import VideoType from "../../util/VideoType";
export default interface RemoteVideo {
    mid: string;
    participant: Participant;
    type: VideoType;
}
