import { Store } from 'redux'; import { IState } from '../types'; import { FieldActionTypes } from './types/actions'; /** * MiddleWare for Field domain. * * Currently listening for actions: * - UODATE_FIELD_PROPERTY * @param {Store} store */ export declare const fieldMiddleware: (store: Store) => (next: any) => (action: FieldActionTypes) => Promise; //# sourceMappingURL=middleware.d.ts.map