import { Reducer } from 'redux'; import { Action } from 'redux-actions'; /** * A redux higher-order Reducer for tracking the user's history. */ export default function trackHistory(reducer: Reducer, rawConfig?: any): (state: any, action: Action) => any;