import { OnInit, OnDestroy, EventEmitter } from '@angular/core'; import { FormControl } from '@angular/forms'; import { WfMdActionService, WfMdActionContainerModel } from 'blg-akaun-ts-lib'; import { ReplaySubject } from 'rxjs'; export declare class WorkflowActionComponent implements OnInit, OnDestroy { private actionService; action: FormControl; actionChange: EventEmitter; private subs; private apiVisa; filterControl: FormControl; filteredOptions$: ReplaySubject; actionList: WfMdActionContainerModel[]; constructor(actionService: WfMdActionService); ngOnInit(): void; filterApplet(search: string): void; ngOnDestroy(): void; }