/** * [[SimulcastLayers]] represents simulcast layers for selected simulcast video streams. */ export declare enum SimulcastLayers { /** * Low resolution video stream. */ Low = 0, /** * Low and medium resolution video streams. */ LowAndMedium = 1, /** * Low and high resolution video streams. */ LowAndHigh = 2, /** * Medium resolution video stream. */ Medium = 3, /** * Medium and high resolution video streams. */ MediumAndHigh = 4, /** * High resolution video stream. */ High = 5 } export default SimulcastLayers;