export interface SummaryStats {
    receivedMedia: number;
    receivedAudioMedia: number;
    receivedVideoMedia: number;
    audioTrackSummary: TrackSummary;
    videoTrackSummary: TrackSummary;
}
export interface TrackSummary {
    count: number;
    muted: number;
}
//# sourceMappingURL=summaryStats.d.ts.map