/** @group Enums */ declare enum AndroidAbrTrackSelection { /** Selects the video quality with the highest available resolution */ VideoQualityHighest = "videoQualityHighest", /** Selects the video quality with the lowest available resolution */ VideoQualityLowest = "videoQualityLowest", /** Selects the video quality with the most suitable resolution */ VideoQualityAdaptive = "videoQualityAdaptive" } export default AndroidAbrTrackSelection;