from typing import Iterator def sent_tokenize(sent: str) -> Iterator[str]: ... def word_tokenize(word: str) -> Iterator[str]: ...