import { ExerciseType } from '../exercise-type';
import { Word } from './word';
export declare class PronunciationExercise {
    type: ExerciseType;
    words: Array<Word>;
}
