import { OnInit, OnDestroy } from '@angular/core'; import { Field } from 'ng-formly'; export declare class FormlyChipsComponent extends Field implements OnInit, OnDestroy { private ngUnsubscribe; items: any[]; value: string; filteredItems: any[]; selectedItems: any[]; constructor(); ngOnInit(): void; map(e: any): any; filter(e: any): any; filterValue(val: any): string[]; changed(e: any): void; add(): void; remove(e: any): void; chipDisplayFn(e: any): any; displayFn(e: any): string; ngOnDestroy(): void; }