import * as $dara from '@darabonba/typescript'; export declare class SendAIAgentSpeechRequest extends $dara.Model { /** * @remarks * Specifies whether the broadcast can interrupt the ongoing speech. Default value: true * * @example * true */ enableInterrupt?: boolean; /** * @remarks * This parameter is required. * * @example * 39f8e0bc005e4f309379701645f4**** */ instanceId?: string; /** * @remarks * This parameter is required. */ text?: string; type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }