import { EventEmitter, OnDestroy, OnInit } from "@angular/core"; import { FormGroup, FormBuilder, FormControl } from "@angular/forms"; import { GlcodeService, ApiVisa } from "blg-akaun-ts-lib"; export declare class SelectGLCodeV2Component implements OnInit, OnDestroy { private fb; private glcodeService; companyControl: FormControl; selectionChange: EventEmitter; viewModelStore: any; ColumnViewActions: any; ColumnViewSelectors: any; readPermissionDefintion: any; private subs; separatorKeysCodes: number[]; apiVisa: ApiVisa; allGlCodes: any; searchGLCodes: any; statuses: any; form: FormGroup; constructor(fb: FormBuilder, glcodeService: GlcodeService); ngOnInit(): void; onSelectGLCode(glCode: any, event: any): void; applyGLCodeFilter(filterValue: string): void; onReset(): void; ngOnDestroy(): void; }