import { JSONValue } from "./types"; export declare function encodeJSONAsBinary(object: JSONValue): Uint8Array; export declare function decodeJSONFromBinary(binary: Uint8Array | ArrayBuffer): JSONValue;