export declare function parse(s: string): any; export declare function stringify(value: any): string; export declare function stringifyAsync(value: any): string | Promise; export declare function toJSON(value: any): any; export declare function toJSONAsync(value: any): any | Promise; export declare function fromJSON(json: any): any; export { toJSON as toJSONValue, fromJSON as fromJSONValue, fromJSON as revive, toJSON as encapsulate, toJSONAsync as encapsulateAsync, };