import * as $dara from '@darabonba/typescript'; export declare class DescribePluginsByApiResponseBodyPluginsPluginAttribute extends $dara.Model { createdTime?: string; description?: string; modifiedTime?: string; pluginData?: string; pluginId?: string; pluginName?: string; pluginType?: string; regionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribePluginsByApiResponseBodyPlugins extends $dara.Model { pluginAttribute?: DescribePluginsByApiResponseBodyPluginsPluginAttribute[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribePluginsByApiResponseBody 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?: DescribePluginsByApiResponseBodyPlugins; /** * @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; }); }