/**
 * Encodes a string to EUC-JP byte array
 * @param str - string to encode
 * @returns EUC-JP encoded bytes
 */
declare function eucjp(str: string): Uint8Array;
export = eucjp;
