import { PhonemeList } from './phoneme-list';
export declare class OptionWord {
    label: string;
    pronunciations: Array<PhonemeList>;
}
export declare class Option {
    label: string;
    words: Array<OptionWord>;
}
