```py class MyPage(ItemPage): @field def name(self) -> str: return "123" page = MyPage() page.name # type is Any, not str ```