I have some proxy objects and it's difficult to type them, I want to lie to mypy what the bases are ```py from typing import TYPE_CHECKING class A: ... class B: ... class C(A if TYPE_CHECKING else B): ... # error: Invalid base class [misc] ```