import { Track } from "./Track";
export declare enum StreamType {
    Consumer = "Consumer",
    Producer = "Producer"
}
export declare class TrackStats {
    track: Track;
    type: StreamType;
    stats: any;
    constructor(_track: Track, _type: StreamType, _stats?: any);
}
