import * as $dara from '@darabonba/typescript'; export declare class ListSmartVoiceGroupsResponseBodyVoiceGroupsVoiceList extends $dara.Model { /** * @remarks * The description of the voice. * * @example * 甜美女声 */ desc?: string; /** * @remarks * The name of the voice. * * @example * Zhi Tian */ name?: string; /** * @remarks * Notes for the voice. * * @example * 中文及中英文混合场景 */ remark?: string; /** * @remarks * The sample rates supported by the voice. * * @example * 48000 */ supportSampleRate?: string; /** * @remarks * The tag for the voice category. * * @example * General scenario */ tag?: string; /** * @remarks * The voice ID. * * @example * zhitian */ voice?: string; voiceSource?: string; /** * @remarks * The voice type. * * @example * Female */ voiceType?: string; /** * @remarks * The URL of the sample audio. * * @example * https://***.com/zhitian.mp3 */ voiceUrl?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListSmartVoiceGroupsResponseBodyVoiceGroups extends $dara.Model { /** * @remarks * The name of the voice group. * * @example * Ultra HD */ type?: string; /** * @remarks * The voice list. */ voiceList?: ListSmartVoiceGroupsResponseBodyVoiceGroupsVoiceList[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListSmartVoiceGroupsResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * 627B30EB-1D0A-5C6D-8467-431626E0FA10 */ requestId?: string; /** * @remarks * An array of voice groups. */ voiceGroups?: ListSmartVoiceGroupsResponseBodyVoiceGroups[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }