import * as $dara from '@darabonba/typescript'; export declare class DetachPolicyFromRoleRequest extends $dara.Model { /** * @remarks * The name of the policy. * * @example * OSS-Administrator */ policyName?: string; /** * @remarks * The type of the policy. Valid values: `System` and `Custom`. * * @example * Custom */ policyType?: string; resourceGroupId?: string; /** * @remarks * The name of the RAM role. * * @example * OSSAdminRole */ roleName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }