/** * Conversion between EBCDIC and ASCII * * @see https://stackoverflow.com/questions/25367120/ example-ebcdic-file-for-java-program-to-convert-ebcdic-to-ascii */ /** * Convert from ASCII to EBCDIC */ export declare function a2e(a: string): number[]; /** * Convert from EBCDIC to ASCII */ export declare function e2a(e: number[]): string;