import * as $dara from '@darabonba/typescript'; export declare class ListTagResourcesResponseBodyTagResourcesTagResource extends $dara.Model { resourceId?: string; resourceType?: string; tagKey?: string; tagValue?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListTagResourcesResponseBodyTagResources extends $dara.Model { tagResource?: ListTagResourcesResponseBodyTagResourcesTagResource[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListTagResourcesResponseBody extends $dara.Model { /** * @remarks * The response code. * * * If OK is returned, the request is successful. * * Other values indicate that the request fails. For more information, see [Error codes](https://help.aliyun.com/document_detail/101346.html). * * @example * OK */ code?: string; /** * @remarks * The token used to query the next page. * * @example * "23432453245" */ nextToken?: string; /** * @remarks * The request ID. * * @example * A90E4451-FED7-49D2-87C8-00700A8C4D0D */ requestId?: string; tagResources?: ListTagResourcesResponseBodyTagResources; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }