#1358
Vladimir
Keymaster

There are no such options in URE. These metaboxes are not managed by user capabilities. So you need to add custom code to remove metabox for selected role. Like this for page attributes:

function remove_page_metaboxes() {
if (current_user_can('some_role')) {
   remove_meta_box('pageparentdiv', 'page', 'side');
}
}
add_action('admin_menu', 'remove_page_metaboxes');