import * as $dara from '@darabonba/typescript'; export declare class DescribePluginsResponseBodyPluginsPluginAttributeTagsTagInfo extends $dara.Model { key?: string; value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribePluginsResponseBodyPluginsPluginAttributeTags extends $dara.Model { tagInfo?: DescribePluginsResponseBodyPluginsPluginAttributeTagsTagInfo[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribePluginsResponseBodyPluginsPluginAttribute extends $dara.Model { createdTime?: string; description?: string; modifiedTime?: string; pluginData?: string; pluginId?: string; pluginName?: string; pluginType?: string; regionId?: string; tags?: DescribePluginsResponseBodyPluginsPluginAttributeTags; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribePluginsResponseBodyPlugins extends $dara.Model { pluginAttribute?: DescribePluginsResponseBodyPluginsPluginAttribute[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribePluginsResponseBody extends $dara.Model { /** * @remarks * The page number of the returned page. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries returned per page. * * @example * 10 */ pageSize?: number; plugins?: DescribePluginsResponseBodyPlugins; /** * @remarks * The ID of the request. * * @example * 46373DC4-19F1-4DC8-8C31-1107289BB5E0 */ requestId?: string; /** * @remarks * The total number of returned entries. * * @example * 1 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }