import { EventEmitter, OnInit } from '@angular/core'; export declare class BcacSingleSelectIconComponent implements OnInit { constructor(); ngOnInit(): void; visible: boolean; closeDropDownMenu(): void; iconType: string; bcacIconType: string; tooltipTitle: string; bcacTooltipTitle: string; dropMenuPanelWidth: string; bcacDropMenuPanelWidth: string; selectValue: { value: string; label: string; }[]; bcacSelectData: { value: string; label: string; }[]; bcacSelectedEmit: EventEmitter; clickRadio(item: { value: string; label: string; }): void; radioValue: any; selectedChange(): void; }