export declare function jsonParse<T = any>(str: string): T;
/** stringify JSON object, but also sorts properties alphabetically */
export declare function jsonStringify(obj: any, space?: number): string;
/** stringify json object without quotes on property names */
export declare function jsonStringifyNoQuotes(obj: any): string;
