/** * Base64 encoding/decoding utilities * Compatible with both Node.js and browser environments */ export declare const base64: { /** * Encode a string to base64 */ encode(str: string): string; /** * Decode a base64 string */ decode(str: string): string; };