/** @group Enums */ declare enum AndroidAbrMethod { /** Common across platforms implementation of network-based adaptation */ CommonNba = "commonNba", /** Exo implementation of network-based adaptation */ Exo = "exo", /** Flip between lowest and highest quality (FOR DEBUGGING) */ Flip = "flip", /** Iterate through renditions (FOR DEBUGGING) */ Iterate = "iterate" } export default AndroidAbrMethod;