import { DoCheck, EventEmitter, IterableDiffers, OnInit } from '@angular/core'; import { NgModel } from '@angular/forms'; import { ElementBase } from '../../base/element-base'; import { AsyncValidatorArray, ValidatorArray } from '../../base/validate'; import { InputFormsConfig } from '../../input-forms-config'; import * as i0 from "@angular/core"; export declare class FilterMultiselectComponent extends ElementBase implements OnInit, DoCheck { config: InputFormsConfig; private iterableDiffers; private _differModel; private _differOptions; private _options; showOptions: boolean; comboTouched: boolean; modelInitialized: boolean; search: string; placeholder: string; searchPlaceholder: string; displayTextProperty: string; valueProperty: string; emptyMessage: string; selectAllButtonLabel: string; clearSelectionButtonLabel: string; dropRight: boolean; onChange: EventEmitter; model: NgModel; get options(): Array; set options(value: Array); identifier: string; constructor(validators: ValidatorArray, asyncValidators: AsyncValidatorArray, config: InputFormsConfig, iterableDiffers: IterableDiffers); ngOnInit(): void; ngDoCheck(): void; Init(): void; ToggleDropDown(event: MouseEvent, value?: boolean): void; ToggleItemSelected(item: any): void; ToggleAllItemsSelection(value: boolean, emitChanges: boolean): void; ItemSelectedCheckChanged(): void; RemoveItem(item: any, index: number, event: any): void; OnComboPressed(event: KeyboardEvent): void; private clearSearch; private updateModel; private setComboTouched; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }