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