import { LanguageCode } from '../../../entities';
import { PhoneArray } from './pronunciation.dto.v1';
export declare class PronunciationRequestDtoV1 {
    phrase: string;
    targetLanguage: LanguageCode;
    confusion?: string | Array<PhoneArray>;
}
