import { SynthesisStatus } from "../Exports"; export interface ITranslationSynthesisEnd { SynthesisStatus: SynthesisStatus; FailureReason: string; } export declare class TranslationSynthesisEnd implements ITranslationSynthesisEnd { private privSynthesisEnd; private constructor(); static fromJSON(json: string): TranslationSynthesisEnd; readonly SynthesisStatus: SynthesisStatus; readonly FailureReason: string; }