1from typing import BinaryIO
2
3def encode(input: BinaryIO, output: BinaryIO, quotetabs: int, header: int = ...) -> None: ...
4def encodestring(s: bytes, quotetabs: int = ..., header: int = ...) -> bytes: ...
5def decode(input: BinaryIO, output: BinaryIO, header: int = ...) -> None: ...
6def decodestring(s: bytes, header: int = ...) -> bytes: ...
7