import { TrackWriterStatisticsType } from '../track/TrackWriterStatistics'; export type MseDecoderStatisticsType = { allTracks: TrackWriterStatisticsType; perTrack: { [mimeType: string]: TrackWriterStatisticsType; }[]; }; export declare const initialMseDecoderStatisticsState: MseDecoderStatisticsType;