declare enum ENCODING {
    utf8 = "utf8",
    ucs2 = "ucs2",
    utf16le = "utf16le",
    latin1 = "latin1",
    ascii = "ascii",
    base64 = "base64",
    hex = "hex"
}

export { ENCODING };
