import { ElementRef, EventEmitter } from '@angular/core';
import { RuntimeService } from '../services/runtime.service';
/**
 * Created by jayhamilton on 2/26/17.
 */
export declare class TypeAheadInputComponent {
    private _runtimeService;
    searchList: string[];
    placeHolderText: any;
    typeAheadIsInMenu: boolean;
    selectionEvent: EventEmitter<string>;
    ArtificialIntelligenceEventEmitter: EventEmitter<any>;
    requestCounter: number;
    maxAttempts: number;
    query: string;
    filteredList: any[];
    elementRef: any;
    constructor(myElement: ElementRef, _runtimeService: RuntimeService);
    filter(): void;
    select(item: any): void;
}
