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