import * as $dara from '@darabonba/typescript'; export declare class UpdateRtcRobotInstanceRequestConfig extends $dara.Model { /** * @remarks * Controls whether voice interrupt is enabled. This change takes effect immediately. * * @example * false */ enableVoiceInterrupt?: boolean; /** * @remarks * The greeting message. The greeting is not updated if it has already been played. * * @example * Hello */ greeting?: string; /** * @remarks * The ID of the voice. The new voice takes effect on the AI Agent\\"s next utterance. * * @example * zhixiaoxia */ voiceId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class UpdateRtcRobotInstanceRequest extends $dara.Model { /** * @remarks * The configuration for the AI Agent instance. */ config?: UpdateRtcRobotInstanceRequestConfig; /** * @remarks * The ID of the AI Agent instance to update. * * This parameter is required. * * @example * 727dc0e296014bb58670940a3da95592 */ instanceId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }