declare class Hex {
    encode(str: string): string;
    decode(str: string): string;
}
declare const hex: Hex;
export { hex };
