import { CallQualityWarningEventType } from "../CallQualityWarningEventType";
import { CallQualityWarningEvent } from "./CallQualityWarningEvent";
/**
 * Warning event emitted when ICE connection is not in `connected` state after the call is established.
 *
 * @param type - `Trigger` when the warning is emitted, `Recover` when the warning is recovered.
 */
export declare class MissingMediaStreamWarningEvent implements CallQualityWarningEvent {
    readonly type: CallQualityWarningEventType;
    constructor(type: CallQualityWarningEventType);
    readonly name: string;
}
