/** * Phonemization constants and mappings */ export declare const PUNCTUATION = "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~"; /** * Core ARPABET to IPA mapping */ export declare const ARPABET_TO_IPA: Record; /** * Stress level mappings */ export declare const IPA_STRESS_MAP: Record; /** * Chinese tone mapping from Unicode tone marks to arrow symbols */ export declare const CHINESE_TONE_TO_ARROW: Record; /** * Reverse mappings for conversion utilities. Auto-generated from the * ARPABET→IPA table, plus a few extras for IPA symbols that the * en-GB / RP transform produces but that don't appear in the canonical * ARPABET inventory (which is American-English flavoured). */ export declare const IPA_TO_ARPABET: Record; export declare const IPA_TO_STRESS: Record; /** * Pinyin initials (聲母) to Zhuyin mapping */ export declare const PINYIN_INITIALS_TO_ZHUYIN: Record; /** * Pinyin finals (韻母) to Zhuyin mapping */ export declare const PINYIN_FINALS_TO_ZHUYIN: Record;