Some implicit type aliases in typeshed are not annotated using TypeAlias, such as:
# types.pyi
LambdaType = FunctionType
NotImplementedType = _NotImplementedType
# ctypes/wintypes.pyi
BYTE = c_byte
WORD = c_ushort
...
BOOLEAN = BYTE
Since these aliases lack explicit type annotations, Red-knot currently widens them as Unknown | T:
from types import LambdaType
reveal_type(LambdaType) # revealed: Unknown | Literal[FunctionType]