import AuthPlugin from "./AuthPlugin"; import { PathFor } from "./interfaces"; declare const _default: (authPlugins: AuthPlugin[], pathFor?: PathFor | undefined) => (store: any) => (next: any) => (action: any) => Promise | undefined; /** Redux middleware for handling requests that require authentication. Intercepts 401 errors and shows an authentication form, then retries the original request after the user authenticates. See Redux Middleware docs: http://redux.js.org/docs/advanced/Middleware.html */ export default _default;