/** * Encodes a byte array in base64 format. * @param value - The Uint8Aray or string to encode */ export declare function base64Encode(value: Uint8Array | string): string; /** * Decodes a base64 string into a byte array. * @param value - The base64 string to decode */ export declare function base64Decode(value: string): Uint8Array; //# sourceMappingURL=bufferSerializer-browser.d.mts.map