/** * base64url-no-padding encode/decode. Pure-JS so it runs under * Node, browsers, and React Native without atob/btoa or Buffer. */ export declare function b64uEncode(bytes: Uint8Array): string; export declare function b64uDecode(input: string): Uint8Array;