import { ElementRef, EventEmitter, OnInit } from '@angular/core'; import { MatChipInputEvent } from '@angular/material/chips'; import { FormControl } from '@angular/forms'; import { MatAutocompleteSelectedEvent, MatAutocomplete } from '@angular/material/autocomplete'; import { Observable } from 'rxjs'; export declare class InputMatChipComponent implements OnInit { classStyle: string; formAppearance: string; label: string; value: string; name: string; hint: string; isRemovable: boolean; placeholder: string; isSelectable: boolean; seperator: string; addOnBlur: boolean; valueOptions: string[]; hasMultiLang: boolean; valueChange: EventEmitter; clickTranslate: EventEmitter; chipInput: ElementRef; matAutocomplete: MatAutocomplete; lstValues: string[]; chipCtrl: FormControl; filteredChip: Observable; constructor(); ngOnInit(): void; add(event: MatChipInputEvent): void; remove(val: any): void; selected(event: MatAutocompleteSelectedEvent): void; openDialogTranslate(): void; private _filter; }