import { EventEmitter, OnDestroy, OnInit } from '@angular/core'; import { FormControl } from '@angular/forms'; import { ApiVisa, Pagination, PrintableFormatContainerModel, PrintableFormatService } from 'blg-akaun-ts-lib'; import { ReplaySubject } from 'rxjs'; export declare class SelectPrintableFormatDropDownComponent implements OnInit, OnDestroy { private printableFormatService; apiVisa: ApiVisa; printableFormat: FormControl; txn_type: string; printableFormatChange: EventEmitter; selectedPrintableFormat: EventEmitter; private subs; pagination: Pagination; filterControl: FormControl; filteredOptions$: ReplaySubject; printableFormatList: PrintableFormatContainerModel[]; constructor(printableFormatService: PrintableFormatService); ngOnInit(): void; filterPrintable(search: string): void; onSelectionChange(e: string): void; ngOnDestroy(): void; }