import { FormGroupState, KeyValue } from '../state'; /** * This update function takes a name and returns a projection function * that removes the child control with the given name from a form group state. */ export declare function removeGroupControl(name: keyof TValue): (state: FormGroupState) => FormGroupState; /** * This update function takes a group form state and a name and removes the * child control with the given name from the state. */ export declare function removeGroupControl(state: FormGroupState, name: keyof TValue): FormGroupState;