export declare class Phoneme {
    readonly arpabet: string;
    readonly american: string;
    readonly english: string;
    readonly ipa: string;
    readonly isVowel: boolean;
    constructor(arpabet: string, american: string, english: string, ipa: string, isVowel: boolean);
}
