from __future__ import annotations

from typing import Any
from typing import Dict
from typing import Iterable
from typing import Tuple

DeconstructResult = Tuple[str, str, Iterable[Any], Dict[str, Any]]
