import { CallQualityWarningEventType } from "../CallQualityWarningEventType";
import { CallQualityWarningMediaStreamType } from "../CallQualityWarningMediaStreamType";
import { CallQualityWarningEvent } from "./CallQualityWarningEvent";
/**
 * Warning event emmitted when Round Trip Time (RTT) drops below 300 (for remote inbound stream).
 *
 * @param type - `Trigger` when the warning is emitted, `Recover` when the warning is recovered.
 * @param mediaStreamType - The media stream type that the warning is related to.
 */
export declare class HighRemoteInboundRttWarningEvent implements CallQualityWarningEvent {
    readonly type: CallQualityWarningEventType;
    readonly mediaStreamType: CallQualityWarningMediaStreamType;
    constructor(type: CallQualityWarningEventType, mediaStreamType: CallQualityWarningMediaStreamType);
    readonly name: string;
}
