1from typing import Any
2from .. import exceptions
3
4TimeoutStateError = exceptions.TimeoutStateError
5
6def current_time(): ...
7
8class Timeout:
9    DEFAULT_TIMEOUT: Any
10    total: Any
11    def __init__(self, total=..., connect=..., read=...) -> None: ...
12    @classmethod
13    def from_float(cls, timeout): ...
14    def clone(self): ...
15    def start_connect(self): ...
16    def get_connect_duration(self): ...
17    @property
18    def connect_timeout(self): ...
19    @property
20    def read_timeout(self): ...
21