from typing import Any class JSONDecodeError(ValueError): ... def dumps(o: object) -> str: ... def loads(s: str | bytes) -> Any: ...