from typing import TypedDict from .enums import Permission class RoleConfig(TypedDict): description: str permissions: list[Permission]