import { OnInit, OnDestroy } from '@angular/core'; import { Field } from 'ng-formly'; import { Http } from "@angular/http"; import { MdDialog } from '@angular/material'; import "rxjs/add/operator/takeUntil"; export declare class FormlySearchComponent extends Field implements OnInit, OnDestroy { private http; dialog: MdDialog; private ngUnsubscribe; value: string; items: any[]; private timeout; private sub; constructor(http: Http, dialog: MdDialog); ngOnInit(): void; onChange(e: any): void; onSelect(e: any): void; optionDisplay(e: any): any; ngOnDestroy(): void; }