import * as $dara from '@darabonba/typescript'; export declare class ListRolesResponseBodyRolesRoleTagsTag extends $dara.Model { tagKey?: string; tagValue?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListRolesResponseBodyRolesRoleTags extends $dara.Model { tag?: ListRolesResponseBodyRolesRoleTagsTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListRolesResponseBodyRolesRole extends $dara.Model { arn?: string; createDate?: string; description?: string; maxSessionDuration?: number; roleId?: string; roleName?: string; tags?: ListRolesResponseBodyRolesRoleTags; updateDate?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListRolesResponseBodyRoles extends $dara.Model { role?: ListRolesResponseBodyRolesRole[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListRolesResponseBody extends $dara.Model { /** * @remarks * Indicates whether the response is truncated. * * @example * true */ isTruncated?: boolean; /** * @remarks * The marker. This parameter is returned only if the value of `IsTruncated` is `true`. If the parameter is returned, you can call this operation again and set this parameter to obtain the truncated part.```` * * @example * EXAMPLE */ marker?: string; /** * @remarks * The request ID. * * @example * 7B8A4E7D-6CFF-471D-84DF-195A7A241ECB */ requestId?: string; roles?: ListRolesResponseBodyRoles; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }