import * as $dara from '@darabonba/typescript'; export declare class TranspositionResult extends $dara.Model { /** * @remarks * * The target language of the translation. * * This field is only used in translation-related scenarios. * * @example * zh */ targetLanguage?: string; /** * @remarks * * The translated text corresponding to the matched hotwords. Maximum length: 100 characters. * * This field is only used in translation-related scenarios. */ translatedText?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }