import { AbstractControl, FormArray } from '@angular/forms'; import { Control, ControlFactory, HashMap } from './types'; export declare function toStore(name: keyof FormsState, control: AbstractControl): any; export declare function handleFormArray(formValue: HashMap | any[], control: AbstractControl, arrControlFactory: ControlFactory | HashMap): void; export declare function deleteControl(snapshot: any, controls: any[]): {}; export declare function findControl(control: Control, path: string): Control; export declare function buildValue(control: Partial): Control; export declare function clearFormArray(control: FormArray): void;