import { EventEmitter } from "@angular/core"; import { DropDownOptionType, IDropDownOption } from "../dropdown-models"; export declare class DropdownResultsComponent { DropDownOptionType: typeof DropDownOptionType; selectedOption: IDropDownOption; isGroupDesign: boolean; options: IDropDownOption[]; onItemSelected: EventEmitter; onItemClicked: (selectedOption: IDropDownOption) => void; }