import { OnInit, DoCheck, ChangeDetectorRef, OnDestroy, ElementRef } from '@angular/core'; import { Field } from 'ng-formly'; export declare class FormlyInputComponent extends Field implements OnInit, OnDestroy, DoCheck { private changeDetectorRef; private ngUnsubscribe; items: any[]; filteredItems: any[]; value: string; myinput: ElementRef; constructor(changeDetectorRef: ChangeDetectorRef); ngOnInit(): void; ngDoCheck(): void; filter(val: string): string[]; keydown(e: any): void; ngOnDestroy(): void; }