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