import * as $dara from '@darabonba/typescript'; export declare class DescribeExternalAgentRequest extends $dara.Model { /** * @remarks * The permission mode of the agent. Valid values: * * admin: administrator mode with full permissions. * restricted: restricted mode with limited permissions. * Default value: admin. * * @example * admin */ agentMode?: string; /** * @remarks * Specifies whether to obtain internal network access credentials. * * - `true`: obtains only internal network connection credentials. * - `false`: obtains only public network connection credentials. * * Default value: `false`. * * @example * true */ privateIpAddress?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }