import { Action, Actions } from '../actions'; import { FormControlState, FormControlValueTypes } from '../state'; export declare function formControlReducerInternal(state: FormControlState, action: Actions): FormControlState; /** * This reducer function updates a form control state with actions. */ export declare function formControlReducer(state: FormControlState | undefined, action: Action): FormControlState;