from typing import Any, ClassVar import lief.Android # type: ignore class ANDROID_VERSIONS: UNKNOWN: ClassVar[ANDROID_VERSIONS] = ... VERSION_601: ClassVar[ANDROID_VERSIONS] = ... VERSION_700: ClassVar[ANDROID_VERSIONS] = ... VERSION_710: ClassVar[ANDROID_VERSIONS] = ... VERSION_712: ClassVar[ANDROID_VERSIONS] = ... VERSION_800: ClassVar[ANDROID_VERSIONS] = ... VERSION_810: ClassVar[ANDROID_VERSIONS] = ... VERSION_900: ClassVar[ANDROID_VERSIONS] = ... __name__: Any def __init__(self, *args, **kwargs) -> None: ... @staticmethod def from_value(arg: int, /) -> lief.Android.ANDROID_VERSIONS: ... @property def value(self) -> int: ... def code_name(version: lief.Android.ANDROID_VERSIONS) -> str: ... def version_string(version: lief.Android.ANDROID_VERSIONS) -> str: ...