import { Injector, ElementRef, Renderer2, OnInit, AfterViewInit, AfterContentInit } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; /** * * ```html * * ``` */ export declare class ZxFormInputDirective implements OnInit, AfterContentInit, AfterViewInit { private _renderer2; private el; /** 缺省值-参数 */ _dataValue: string; _name: string; _formData: Object; activatedRoute: ActivatedRoute; constructor(_renderer2: Renderer2, el: ElementRef, injector: Injector); ngOnInit(): void; ngAfterContentInit(): void; ngAfterViewInit(): void; onClick(e: any, param1: any): void; formatDate(date: Date): string; parseInputField(inputElement: any, params: any, inputType?: any): void; }