from _typeshed import StrOrBytesPath from typing import BinaryIO, Iterable, Tuple from ..base import AsyncBase class AsyncTextIOWrapper(AsyncBase[str]): async def close(self) -> None: ... async def flush(self) -> None: ... async def isatty(self) -> bool: ... async def read(self, __size: int | None = ...) -> str: ... async def readline(self, __size: int = ...) -> str: ... async def readlines(self, __hint: int = ...) -> list[str]: ... async def seek(self, __offset: int, __whence: int = ...) -> int: ... async def seekable(self) -> bool: ... async def tell(self) -> int: ... async def truncate(self, __size: int | None = ...) -> int: ... async def writable(self) -> bool: ... async def write(self, __b: str) -> int: ... async def writelines(self, __lines: Iterable[str]) -> None: ... def detach(self) -> BinaryIO: ... def fileno(self) -> int: ... def readable(self) -> bool: ... @property def buffer(self) -> BinaryIO: ... @property def closed(self) -> bool: ... @property def encoding(self) -> str: ... @property def errors(self) -> str | None: ... @property def line_buffering(self) -> bool: ... @property def newlines(self) -> str | Tuple[str, ...] | None: ... @property def name(self) -> StrOrBytesPath | int: ... @property def mode(self) -> str: ...