export default class Base64 { static _keyStr: string; encode: (input: string) => string; decode: (input: string) => string; private _utf8_encode; private _utf8_decode; }