import * as $dara from '@darabonba/typescript'; export declare class SendAIAgentTextRequest extends $dara.Model { /** * @remarks * The ID of the AI agent instance. * * > InstanceId is a unique identifier that is returned when the AI agent is started. To start an AI agent, call [StartAIAgentInstance ](https://help.aliyun.com/document_detail/2846201.html) or [GenerateAIAgentCall](https://help.aliyun.com/document_detail/2846209.html). * * This parameter is required. * * @example * f27f9b9be28642a88e18**** */ instanceId?: string; /** * @remarks * The input to the LLM. * * This parameter is required. * * @example * Hello */ text?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }