diff --git a/libs/lib/xaal/lib/types.py b/libs/lib/xaal/lib/types.py
deleted file mode 100644
index 12c6f75f50c2c72a56ab4889c16baa0422186b4a..0000000000000000000000000000000000000000
--- a/libs/lib/xaal/lib/types.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# Python type hints for the xAAL library
-
-from typing import TYPE_CHECKING, TypeVar
-
-if TYPE_CHECKING:
-    from .devices import Device, Attributes, Attribute
-    from .engine import Engine
-    from .aioengine import AsyncEngine
-    from .bindings import UUID
-
-DeviceT = TypeVar("DeviceT", bound="Device")
-AttributeT = TypeVar("AttributeT", bound="Attribute")
-AttributesT = TypeVar("AttributesT", bound="Attributes")
-EngineT = TypeVar("EngineT", bound="Engine")
-AsyncEngineT = TypeVar("AsyncEngineT", bound="AsyncEngine")
-
-UUIDT = TypeVar("UUIDT", bound="UUID")