import { ElementRef, EventEmitter, OnInit, SimpleChanges } from '@angular/core'; import * as i0 from "@angular/core"; export declare class MultiSelectComponent implements OnInit { private elementRef; options: { value: any; text: any; }[]; selectedValues: any[]; id: string; selectionChange: EventEmitter; clear: boolean; selectedCodes: Set; dropdownOpen: boolean; constructor(elementRef: ElementRef); onClickOutside(target: HTMLElement): void; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; toggleSelection(code: string, event: Event): void; emitSelection(): void; getValues(): any[]; toggleSelectAll(event: Event): void; isAllSelected(): boolean; get selectedNames(): string; toggleDropdown(): void; closeDropdown(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }