import { FormGroup } from '@angular/forms'; /** * Set the value of a FormControl * * @param form - The FormGroup * @param controlName - The name of the control * @param controlValue - The value to set the control to * * @example * setFormControlValue(myForm, 'budget', 50); */ export declare function setFormControlValue(form: FormGroup, controlName: string, controlValue: T): void;