import { Action, Actions } from '../actions'; import { FormGroupState, KeyValue } from '../state'; export declare function formGroupReducerInternal(state: FormGroupState, action: Actions): FormGroupState; /** * This reducer function updates a form group state with actions. */ export declare function formGroupReducer(state: FormGroupState | undefined, action: Action): FormGroupState;