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