import type { TeletexString } from "@wildboar/asn1"; /** * @summary Convert a T.61 / Teletex String into a normal Unicode string. * @description * * This implementation is not known to be correct. There is not enough test data * out there, and frankly, the value of this code is pretty low. Just don't use * Teletex. It was abandoned by the ITU, after all. * * Any characters not recognized as valid T.61 characters are simply passed * through to Unicode. * * This implementation handles conversion diacritic modifiers. * * @param ttex The raw bytes of the T.61 string. * @returns The `string` equivalent. */ export declare function teletexToString(ttex: TeletexString): string; export default teletexToString; //# sourceMappingURL=teletexToString.d.mts.map