import { AfterContentInit, OnDestroy, OnInit } from '@angular/core'; import { FormControl } from '@angular/forms'; import { Subscription } from 'rxjs'; export declare class JdFormControlComponent implements OnInit, OnDestroy, AfterContentInit { private _hasFeedback; validateChanges: Subscription; validateString: string; controlStatus: string; controlClassMap: any; validateControl: FormControl; jdHasFeedback: boolean; jdValidateStatus: string | FormControl; removeSubscribe(): void; updateValidateStatus(status: string): void; watchControl(): void; setControlClassMap(): void; ngOnInit(): void; ngOnDestroy(): void; ngAfterContentInit(): void; }