# Python: 3.9.2 (tags/v3.9.2:1a79785, Feb 19 2021, 13:44:55) [MSC v.1928 64 bit (AMD64)]
# Library: pandas, version: 1.2.4
# Module: pandas._libs.json, version: unspecified
import typing
import builtins as _mod_builtins

__doc__: typing.Any
__file__: str
__name__: str
__package__: str
def decode() -> typing.Any:
    'Converts JSON as string to dict object structure. Use precise_float=True to use high precision float decoder.'
    ...

def dumps() -> typing.Any:
    'Converts arbitrary object recursively into JSON. Use ensure_ascii=false to output UTF-8. Pass in double_precision to alter the maximum digit precision of doubles. Set encode_html_chars=True to encode < > & as unicode escape sequences.'
    ...

def encode() -> typing.Any:
    'Converts arbitrary object recursively into JSON. Use ensure_ascii=false to output UTF-8. Pass in double_precision to alter the maximum digit precision of doubles. Set encode_html_chars=True to encode < > & as unicode escape sequences.'
    ...

def loads() -> typing.Any:
    'Converts JSON as string to dict object structure. Use precise_float=True to use high precision float decoder.'
    ...

def __getattr__(name) -> typing.Any:
    ...

