import { IPayload } from '../Action/IPayload'; import { Middleware } from './Type'; import { IAction } from '../Action'; declare const next: (payload: IAction) => Middleware.INext; export default next;