import { CallQualityWarningEventType } from "../CallQualityWarningEventType";
import { CallQualityWarningMediaStreamType } from "../CallQualityWarningMediaStreamType";
/**
 * Base interface for objects describing call quality warning events.
 */
export interface CallQualityWarningEvent {
    /**
     * String representation of the warning
     */
    readonly name: string;
    /**
     * Type of the warning event.
     */
    readonly type: CallQualityWarningEventType;
    /**
     * The stream type asoociated with the warning or undefined if warning
     * can't be associated with specific stream.
     */
    readonly mediaStreamType?: CallQualityWarningMediaStreamType;
}
