from typing import ( Callable, Tuple, Union, ) def get_callable(lookup_view: Union[str, Callable]) -> Callable: ... def get_mod_func(callback: str) -> Tuple[str, str]: ...