1 from typing import Any, Union 2 3 from . import Attribute, _FilterType 4 5 def include(*what: Union[type, Attribute[Any]]) -> _FilterType[Any]: ... 6 def exclude(*what: Union[type, Attribute[Any]]) -> _FilterType[Any]: ...