import { AfterViewInit, ChangeDetectorRef, ElementRef, OnDestroy, OnInit, ViewContainerRef } from '@angular/core'; import { FormFieldComponent } from './form-field.component'; export declare class FormLabelComponent implements OnInit, AfterViewInit, OnDestroy { private cd; private _elementRef; private _vcRef; /** * @description * The parent for the containers * * @internal */ _parent: FormFieldComponent; readonly label: string; private readonly _control; constructor(cd: ChangeDetectorRef, _elementRef: ElementRef, _vcRef: ViewContainerRef, parent: FormFieldComponent); ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; }