/** * * Base64 encode / decode * http://www.webtoolkit.info/ * **/ declare let Base64: { _keyStr: string; encode: (input: any, binary: any) => string; decode: (input: any, binary: any) => string; _utf8_encode: (string: any) => string; _utf8_decode: (utftext: any) => string; }; export default Base64;