import { AbstractControlState, FormArrayState, FormControlState, FormControlValueTypes, FormGroupState, FormState } from '../state'; /** * This update function takes a form control state and enables it. */ export declare function enable(state: FormControlState): FormControlState; /** * This update function takes a form array state and enables it and all of its children. */ export declare function enable(state: FormArrayState): FormArrayState; /** * This update function takes a form group state and enables it and all of its children. */ export declare function enable(state: FormGroupState): FormGroupState; /** * This update function takes a form state and enables it. For groups and arrays also * enables all children. */ export declare function enable(state: AbstractControlState): FormState;