import { EventEmitter, OnInit } from '@angular/core'; import * as i0 from "@angular/core"; export interface DropdownSelectInterface { key: string; value: string; } export declare class DropdownSelectComponent implements OnInit { label: string; selectedKey: string; readonly: boolean; options: DropdownSelectInterface[]; selectedKeyChange: EventEmitter; onSelect: EventEmitter; selectedOption: string | undefined; selectedItem: DropdownSelectInterface | undefined; showOptions: boolean; ngOnInit(): void; handleChange(selectedKey: string): void; private getSelectedItem; openDropdown(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }