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

export = hex;
