/** * @license * Copyright Alibaba.com All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { AfterContentInit, ChangeDetectorRef, ElementRef, OnDestroy, OnInit, Renderer2, TemplateRef } from '@angular/core'; import { FormControl, FormControlDirective, FormControlName, NgModel } from '@angular/forms'; import { BooleanInput } from 'ng-zorro-antd/core/types'; import { NzI18nService } from 'ng-zorro-antd/i18n'; import { NzFormItemComponent } from './form-item.component'; declare const iconTypeMap: { error: string; validating: string; success: string; warning: string; }; export declare class NzFormControlComponent implements OnDestroy, OnInit, AfterContentInit, OnDestroy { private nzFormItemComponent; private cdr; ngAcceptInputType_nzHasFeedback: BooleanInput; ngAcceptInputType_nzRequired: BooleanInput; ngAcceptInputType_nzNoColon: BooleanInput; ngAcceptInputType_nzDisableAutoTips: BooleanInput; private _hasFeedback; private validateChanges; private validateString; private status; private destroyed$; private localeId; private defaultAutoTips; private defaultDisableAutoTips; private autoErrorTip; private readonly disableAutoTips; validateControl: FormControl | NgModel | null; iconType: typeof iconTypeMap[keyof typeof iconTypeMap] | null; innerTip: string | TemplateRef<{ $implicit: FormControl | NgModel; }> | null; defaultValidateControl: FormControlName | FormControlDirective; nzSuccessTip: string | TemplateRef<{ $implicit: FormControl | NgModel; }>; nzWarningTip: string | TemplateRef<{ $implicit: FormControl | NgModel; }>; nzErrorTip: string | TemplateRef<{ $implicit: FormControl | NgModel; }>; nzValidatingTip: string | TemplateRef<{ $implicit: FormControl | NgModel; }>; nzExtra: string | TemplateRef; nzAutoTips: Record>; nzDisableAutoTips: boolean | 'default'; nzHasFeedback: boolean; nzValidateStatus: string | FormControl | FormControlName | NgModel; private removeSubscribe; private watchControl; private setStatus; private getControlStatus; private validateControlStatus; private getInnerTip; private updateAutoTip; private updateAutoErrorTip; setDefaultAutoTipConf(autoTips: Record>, disableAutoTip: boolean): void; constructor(elementRef: ElementRef, nzFormItemComponent: NzFormItemComponent, cdr: ChangeDetectorRef, renderer: Renderer2, i18n: NzI18nService); ngOnInit(): void; ngOnDestroy(): void; ngAfterContentInit(): void; } export {};