import { Entities } from '../schema'; import { State } from '../interfaces'; import { ActionTypes, Reducer } from './interfaces'; import { Interceptor } from '../interceptor'; export declare const makeRootReducer: (entities: Entities, actionTypes: ActionTypes, interceptor: Interceptor) => Reducer;