import { ChangeDetectorRef, OnInit, ViewContainerRef } from '@angular/core'; import { FormFieldComponent } from '../components/form-field.component'; export declare class FormControlDirective implements OnInit { private cd; private _vcRef; /** * @description * The parent for the containers * * @internal */ _parent: FormFieldComponent; constructor(cd: ChangeDetectorRef, _vcRef: ViewContainerRef, parent: FormFieldComponent); ngOnInit(): void; onChanged: (e: any) => void; onBlurred: (e: any) => void; }