/**
 * Class to hold the stream stats data coming in from webRtc
 */
export declare class StreamStats {
    id: string;
    streamIdentifier: string;
    timestamp: number;
    trackIds: string[];
}
