declare class Zhuyin { private tone; private pinyin; private character; constructor(pinyin: string); getPinyin(): string; getCharacter(): string; getCharacterWithTone(): string; setTone(number: number): void; private setCharacter; } export default Zhuyin;