import { OnInit, EventEmitter, SimpleChanges, OnChanges, OnDestroy } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { Subscription } from 'rxjs'; import { SeaculumAngularFormlyService } from '../../services/saeculum-angular-formly.service'; export declare class ChipComponent implements OnInit, OnChanges, OnDestroy { formService: SeaculumAngularFormlyService; fieldObj: any; options: any; values: any; form: FormGroup; valueChange: EventEmitter; isHideExpression: boolean; subscriptions: Subscription[]; constructor(formService: SeaculumAngularFormlyService); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; notifyChange(): void; hideExpression(): void; setValidations(): void; clearValidations(): void; ngOnDestroy(): void; }