import { OnInit, OnDestroy, EventEmitter } from '@angular/core'; import { FormControl } from '@angular/forms'; import { ApiVisa, EmployeeService, EntityContainerModel } from 'blg-akaun-ts-lib'; import { ReplaySubject } from 'rxjs'; export declare class SelectAgentDropDownComponent implements OnInit, OnDestroy { private employeeService; salesAgent: FormControl; apiVisa: ApiVisa; salesAgentChange: EventEmitter; selectionChange: EventEmitter; private subs; filterControl: FormControl; filteredOptions$: ReplaySubject; entityList: EntityContainerModel[]; constructor(employeeService: EmployeeService); ngOnInit(): void; filterCurrency(search: string): void; ngOnDestroy(): void; }