import type { Action, Dispatch } from 'redux';
declare function arrayMiddleware<D extends Dispatch = Dispatch>({ dispatch, }: {
    dispatch: D;
}): (next: D) => (action: Action | Action[]) => any;
export default arrayMiddleware;
//# sourceMappingURL=array.d.ts.map