import * as lucide_angular from 'lucide-angular'; import * as i0 from '@angular/core'; import { OnInit, OnChanges, EventEmitter, SimpleChanges } from '@angular/core'; import { Observable } from 'rxjs'; import { MatOption, MatOptionSelectionChange } from '@angular/material/core'; interface IOption { value: string; label: string; tag?: string; } declare class SelectComponent implements OnInit, OnChanges { control: any; options: IOption[]; placeholderText: string; isLoading: boolean; label: string; isMultipleSelect: boolean; iconClear: string; descriptionTooltip: string; changeEvent: EventEmitter>; filteredOptions$: Observable | undefined; readonly chevronDownI: lucide_angular.LucideIconData; readonly xI: lucide_angular.LucideIconData; readonly infoCircle: lucide_angular.LucideIconData; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; isControlRequired(): boolean; private setFilterObservable; displayFn(option: IOption): string; clearSelection(): void; private validateOption; onChange(event: MatOptionSelectionChange): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } declare class KifSelectModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; } export { KifSelectModule, SelectComponent }; export type { IOption };