/**
 * Shared btoa utility with Node.js and browser fallback
 */
declare let btoa: (str: string) => string;
export { btoa };
