declare const Base64: {
    btoa: (str: string) => string;
    atob: (str: string) => string;
};
export default Base64;
