Please follow the instruction in the documentation. Here is a sample code:
$meta_boxes[] = array(
'title' => 'Car Information',
'fields' => array(
// Group
array(
'name' => 'Car Details',
'id' => 'car_details',
'type' => 'group',
'fields' => array(
array(
'name' => 'Model',
'id' => 'model',
'type' => 'text',
),
// Other sub-fields here
),
),
),
);