import { IGroupState } from './types/state'; import { GroupActionTypes } from './types/actions'; /** * Initial state for Group domain */ export declare const initialState: IGroupState; /** * Reducer for Group domain * * @param {IGroupState} state * @param {GroupActionTypes} action * @returns {IGroupState} modified (new) Group state */ export declare const groupReducer: (state: IGroupState, action: GroupActionTypes) => IGroupState; //# sourceMappingURL=reducer.d.ts.map