import { AfterViewInit, EventEmitter, OnChanges, OnInit } from '@angular/core'; import { Option } from './option'; import { OptionList } from './option-list'; export declare class SelectDropdownComponent implements AfterViewInit, OnChanges, OnInit { filterEnabled: boolean; highlightColor: string; highlightTextColor: string; left: number; multiple: boolean; notFoundMsg: string; optionList: OptionList; top: number; width: number; close: EventEmitter; optionClicked: EventEmitter