import { OnDestroy, OnInit } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { BranchService, LocationService } from 'blg-akaun-ts-lib'; import { Observable } from 'rxjs'; export declare class GenericDocumentViewMainComponent implements OnInit, OnDestroy { private locationService; private branchService; genericDoc$: 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(locationService: LocationService, branchService: BranchService); ngOnInit(): void; ngOnDestroy(): void; }