import { OnDestroy, OnInit } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { CompanyService, BranchService } from 'blg-akaun-ts-lib'; import { Observable } from 'rxjs'; export declare class CashDocumentViewMainComponent implements OnInit, OnDestroy { private companyService; private branchService; cashDoc$: Observable; apiVisa: import("blg-akaun-ts-lib").ApiVisa; private subs; form: FormGroup; leftColControls: { label: string; formControl: string; type: string; readonly: boolean; }[]; rightColControls: { label: string; formControl: string; type: string; readonly: boolean; }[]; constructor(companyService: CompanyService, branchService: BranchService); ngOnInit(): void; ngOnDestroy(): void; }