import * as $dara from '@darabonba/typescript'; export declare class CheckServiceRoleRequestRoles extends $dara.Model { /** * @remarks * Container service role name. For information about container service roles and permission scopes included in ACK, see [ACK service roles](https://help.aliyun.com/document_detail/86483.html). * * This parameter is required. * * @example * AliyunCSManagedAutoScalerRole */ name?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CheckServiceRoleRequest extends $dara.Model { /** * @remarks * The list of service roles to check. * * This parameter is required. */ roles?: CheckServiceRoleRequestRoles[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }