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 token that determines the start point of the next query. * * A NextToken value of -1 indicates that a next query does not exist. * * @example * 1d2db86sca4384811e0b5e8707e68181f */ nextToken?: string; /** * @remarks * The ID of the request. * * @example * 2D69A58F-345C-4FDE-88E4-BF5189484043 */ requestId?: string; tagResources?: ListTagResourcesResponseBodyTagResources; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }