import { OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { MatChipListboxChange } from '@angular/material/chips'; import { IOption } from '../../interface/option.interface'; import { FormControl } from '@angular/forms'; import { AbmList } from '../../interface'; import { Observable } from 'rxjs'; import * as i0 from "@angular/core"; export declare class AbmChipSelectorComponent implements OnInit, OnChanges { control: FormControl; isFormDisabled: boolean; filteredOptions$: Observable | undefined; private _abmListInput; multiple: boolean; constructor(); set abmListInput(abmListInput: AbmList); get abmListInput(): AbmList; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; private updateControlValueFormat; private setFilterObservable; isSelected(optionValue: string): boolean; onSelectionChange(event: MatChipListboxChange): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }