from __future__ import annotations

from types import ModuleType
from typing import Any

Array = Any  # To be changed to a Protocol later (see array-api#589)

__all__ = ["Array", "ModuleType"]
