import { Entities } from './schema'; import { Selectors, State, Action } from './interfaces'; import { ActionTypes } from './actions'; export interface Interceptor { (state: State, action: Action): Action; } export declare const makeInterceptor: (entities: Entities, selectors: Selectors, actionTypes: ActionTypes) => Interceptor;