1# Stub for termcolor: https://pypi.python.org/pypi/termcolor
2from typing import Any, Iterable, Optional, Text
3
4
5def colored(
6    text: Text,
7    color: Optional[Text] = ...,
8    on_color: Optional[Text] = ...,
9    attrs: Optional[Iterable[Text]] = ...,
10) -> Text:
11    ...
12
13
14def cprint(
15    text: Text,
16    color: Optional[Text] = ...,
17    on_color: Optional[Text] = ...,
18    attrs: Optional[Iterable[Text]] = ...,
19    **kwargs: Any,
20) -> None:
21    ...
22