import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core'; import * as i0 from "@angular/core"; export declare class EluxDropdownMultiple implements OnInit, OnChanges { disabled: boolean; idInput: string; placeholder: string; options: { value: any; text: string; }[]; selectedOptions: any[]; optionSelected: EventEmitter; isOpen: boolean; selectedOptionsText: string[]; constructor(); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; updateSelectedOptions(): void; toggleDropdown(): void; selectOption(option: { value: any; text: string; }): void; onDocumentClick(event: MouseEvent): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }