export declare function parseJwt(token: string): unknown; /** * Encodes a value or an object with the help of JSON.stringify to an Uint8Array. * * @param value Value or object to encode * @returns The Uint8Array encoded value */ export declare function valueToUint8Array(value: any): Uint8Array; /** * Decodes a Uint8Array. * * @param bytes Byte array to decode * @returns The decoded value or undefined on error */ export declare function uint8ArrayToValue(bytes: Uint8Array): T;