declare const base64: {
    encode(bytes: number[]): string;
    decode(str: string): number[];
};

export = base64;
