import * as $dara from '@darabonba/typescript'; export declare class CheckServiceRoleResponseBodyRoles extends $dara.Model { /** * @remarks * Indicates whether the service role has been granted. * * @example * true */ granted?: boolean; /** * @remarks * The prompt message returned when the service role is not granted. * * @example * The role does not exist: AliyunCSManagedAutoScalerRole */ message?: string; /** * @remarks * The service role name. * * @example * AliyunCSManagedAutoScalerRole */ name?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CheckServiceRoleResponseBody extends $dara.Model { /** * @remarks * The service role check results. */ roles?: CheckServiceRoleResponseBodyRoles[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }