import { AbstractControl, FormGroup } from '@angular/forms'; import { Question } from '../../model'; /** * @deprecated Will be removed in version [3.0.0]. Use dependency * injection pattern instead. */ export declare abstract class BaseFormControlComponent { formGroup: FormGroup; control: C; question: Question; properties: T; }