set_data and update_data of BaseStorage and SceneWizard accepts Dict[str, Any], but TypedDict is not a subtype of the dict type.
Ref: https://mypy.readthedocs.io/en/stable/typed_dict.html
class FSMData(TypedDict, total=False):
owner_id: int
await state.update_data(FSMData(owner_id=42))
error: Argument 1 to "update_data" of
"FSMContext" has incompatible type "FSMData"; expected "dict[str, Any] | None" [arg-type]
FSMData(
^