//#region src/jwe/b64url.d.ts /** * base64url-no-padding encode/decode. Pure-JS so it runs under * Node, browsers, and React Native without atob/btoa or Buffer. */ declare function b64uEncode(bytes: Uint8Array): string; declare function b64uDecode(input: string): Uint8Array; //#endregion export { b64uDecode, b64uEncode }; //# sourceMappingURL=b64url.d.mts.map