import { AfterViewInit } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import * as i0 from "@angular/core"; export declare class MywInputComponent implements AfterViewInit, ControlValueAccessor { /** 父组件传过来的正则。 */ reg?: string; w?: string; placeholder?: string; bold: any; name: any; disabled: boolean; /** 父组件传过来的数据 */ _fathrData: string; /** 是否disabled */ flagDisabled: boolean; /** 父组件传过的数据复制的一份数据。主要是为了不满足正则的时候,要恢复原来的内容。 */ fatherDataCopy: string; constructor(); set fatherData(value: string); get fatherData(): string; /** 将父组件传过来的数据写入到此组件中。 */ writeValue(obj: any): void; /** 把此组件修改过的内容,写入到子组件中 */ registerOnChange(fn: any): void; registerOnTouched(fn: any): void; setDisabledState?(isDisabled: boolean): void; change: (value: any) => void; ngAfterViewInit(): void; changeValue(e: any, input: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }