import { Action, Actions } from '../actions'; import { FormArrayState } from '../state'; export declare function formArrayReducerInternal(state: FormArrayState, action: Actions): FormArrayState; /** * This reducer function updates a form array state with actions. */ export declare function formArrayReducer(state: FormArrayState | undefined, action: Action): FormArrayState;