The intend of your question is not clear. Are you having problem with the spread uses or how to compose the store object.
below are a few solutions based of assumptions:
- If you want the properties - prop1and- prop2in the- configureStoredirectly. just reference them and add them at the root level of store.
 - import aReducer from './a/slice';
import bReducer from './b/slice';
import cReducer from './c/slice';
const {prop1, prop2} = cReducer;
export default configureStore({
  reducer: {
    a: aReducer,
    b: bReducer,           
  },   
    prop1,
    prop2,       
}); 
 
- If by root you meant in the - reducerobject.
 - import aReducer from './a/slice';
import bReducer from './b/slice';
import cReducer from './c/slice';
const {prop1, prop2} = cReducer;
export default configureStore({
  reducer: {
    a: aReducer,
    b: bReducer,
    prop1,
    prop2,
  },          
});
 
you can also alias the props:
    const {prop1, prop2} = cReducer;
    
    export default configureStore({
      reducer: {
        a: aReducer,
        b: bReducer,            
      },     
       c: prop1,
       d: prop2,     
    });
Note: BTW if you want the cReducer also in the object you can simply add that as well, as you already have.
If you wish to add a subset of props of cReducer, you can compose a new object using lodash omit function. see omit
const cReducerWithout = omit(cReducer, 'propx')
and use the cReducerWithout in your store.