import * as $dara from '@darabonba/typescript'; export declare class ListSmartVoiceGroupsResponseBodyVoiceGroupsVoiceList extends $dara.Model { /** * @remarks * The speaker description. */ desc?: string; /** * @remarks * The speaker name. */ name?: string; /** * @remarks * The remarks of the speaker. */ remark?: string; supportSampleRate?: string; /** * @remarks * The tag of the speaker type. */ tag?: string; /** * @remarks * The speaker ID. * * @example * zhitian */ voice?: string; voiceSource?: string; /** * @remarks * The speaker type. * * Valid values: * * * Male * * Female * * Boy * * Girl * * @example * Female */ voiceType?: string; /** * @remarks * The URL of the sample audio file. * * @example * https://***.com/zhiqing.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 speaker group. */ type?: string; /** * @remarks * The speakers. */ 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 * The queried speaker groups. */ voiceGroups?: ListSmartVoiceGroupsResponseBodyVoiceGroups[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }