/** * Decode base64 to UTF-8 string. */ export declare function base64DecodeText(body: string): string; /** * Decode base64 to raw bytes without any text encoding conversion, * preserving byte-for-byte accuracy needed for binary content. */ export declare function base64DecodeBytes(body: string): Uint8Array; //# sourceMappingURL=base64Decode.d.ts.map