import { OnInit, OnDestroy, EventEmitter } from '@angular/core'; import { FormControl } from '@angular/forms'; import { PrintableFormatContainerModel, PrintableFormatService } from 'blg-akaun-ts-lib'; import { ReplaySubject, Subject } from 'rxjs'; export declare class ParentPrintableDropdownComponent implements OnInit, OnDestroy { private service; txnType: FormControl; printable: FormControl; hideNone: any; printableSelected: EventEmitter; selected: PrintableFormatContainerModel; private subs; private apiVisa; filterControl: FormControl; filteredOptions$: ReplaySubject; printableList: PrintableFormatContainerModel[]; protected _onDestroy: Subject; constructor(service: PrintableFormatService); ngOnInit(): void; filterPrintable(search: string): void; onSelect(guid: string): void; onPatchValue(guid: string): void; ngOnDestroy(): void; }