import { OnInit, ChangeDetectorRef, OnDestroy } from '@angular/core'; import { Field } from 'ng-formly'; import { Http } from "@angular/http"; import { MdDialog } from '@angular/material'; export declare class FormlyAutocompleteComponent extends Field implements OnInit, OnDestroy { private http; dialog: MdDialog; private changeDetectorRef; private ngUnsubscribe; items: any[]; value: string; private lastInput; private sub; private timeout; constructor(http: Http, dialog: MdDialog, changeDetectorRef: ChangeDetectorRef); ngOnInit(): void; changed(e: any): void; clicked(e: any): void; displayFn(e: any): string; ngOnDestroy(): void; }