import * as $dara from '@darabonba/typescript'; export declare class StartRtcRobotInstanceRequestConfig extends $dara.Model { asrMaxSilence?: number; /** * @example * true */ enableVoiceInterrupt?: boolean; greeting?: string; useVoiceprint?: boolean; userOfflineTimeout?: number; userOnlineTimeout?: number; /** * @example * zhixiaoxia */ voiceId?: string; voiceprintId?: string; volume?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class StartRtcRobotInstanceRequest extends $dara.Model { /** * @remarks * This parameter is required. * * @example * ********** */ authToken?: string; /** * @remarks * This parameter is required. * * @example * testId */ channelId?: string; config?: StartRtcRobotInstanceRequestConfig; /** * @remarks * This parameter is required. * * @example * ca28b08ad3464ebcb42e5c0f7c6d2e89 */ robotId?: string; /** * @example * {} */ userData?: string; /** * @remarks * This parameter is required. * * @example * my-robot */ userId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }