import { OnInit, OnDestroy } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { ConfirmationModalComponent, ConfirmationModalOptions, FilterItem, FormOptions, PagingComponent, PagingOptions, TagsInputOptions, TextBoxOptions } from '@bnsights/bbsf-controls'; import { SectorModel } from '../../shared/models/SectorModels/SectorModel'; import { ActivatedRoute } from '@angular/router'; import { SectorService } from '../../shared/Services/SectorService.service'; import { PageInfoService } from '../../../_metronic/core/services/page-info.service'; import { NgbModal } from '@ng-bootstrap/ng-bootstrap'; import { AuthService, UtilityService, RequestHandlerService } from '@bnsights/bbsf-utilities'; import { Observable } from 'rxjs'; import * as i0 from "@angular/core"; export declare class SectorInfoComponent implements OnInit, OnDestroy { private authService; utilityService: UtilityService; private activatedRoute; private sectorService; private pageInfoService; private modalService; private requestHandlerService; ApiUrl: string; SectorId: string; Sector: SectorModel; searchTextBox: TextBoxOptions; sectorIdTextBox: TextBoxOptions; filterForm: FormGroup<{}>; departmentSectorForm: FormGroup<{}>; showFilter: boolean; departmentSectorPagingResult: any[]; filteredDepartmentSectorPagingResult: any[]; departmentSectorPaging: PagingOptions; textInputFilter: FilterItem; sectorIdTextInputFilter: FilterItem; isFilterLoaded: boolean; pagingElement: PagingComponent; addDepartmentToSectorForm: FormGroup<{}>; addDepartmentToSectorFormOptions: FormOptions; departmentAutoComplete: TagsInputOptions; isAddDepartmentFormLoaded: boolean; deleteDepartmentId: string; deleteConfirmationOptions: ConfirmationModalOptions; deleteControlLoaded: boolean; ConfirmationModalControl: ConfirmationModalComponent; constructor(authService: AuthService, utilityService: UtilityService, activatedRoute: ActivatedRoute, sectorService: SectorService, pageInfoService: PageInfoService, modalService: NgbModal, requestHandlerService: RequestHandlerService); ngOnInit(): void; setDepartmentSectorListResult(result: any): void; initializePage(): void; showAddDepartmentToSectorModal(AddDepartmentToSectorModal: any): void; getAddDepartmentToSectorModel: () => any[]; getAddDepartmentToSectorFunction: (AddModel: any) => Observable; showDeleteDepartmentFromSectorModal(departmentId: string): void; deleteDepartment: (id: string) => Observable; /**FunctionName:filterSectorList*/ /**Declaration:function to filter SectorList in client-side */ /**Parameters:*/ /**searchValue: current value of search box*/ filterDepartmentList(searchValue: any): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }