import { AfterViewInit, ElementRef } from '@angular/core'; import { NgModel } from '@angular/forms'; export declare class InputDirective implements AfterViewInit { el: ElementRef; control: NgModel; value: string; focus: boolean; constructor(el: ElementRef, control: NgModel); ngAfterViewInit(): void; getType(): any; getID(): any; setType(type: string): void; clear(): void; isInvalid(): boolean | null; isValid(): boolean | null; isDisabled(): any; isRequired(): any; onFocus(): void; onBlur(): void; onInput(value: string): void; } //# sourceMappingURL=input.directive.d.ts.map