/** * Decodes a Uint8Array into a JSON object. * Function would throw if the input is not a valid JSON string encoded as bytes. * * @param input - The Uint8Array to decode. * @returns The decoded JSON object. */ export declare const decodeJson: (input: Uint8Array) => any;