import { OnInit, OnDestroy } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { ActivatedRoute } from '@angular/router'; import { ConfirmationModalComponent, ConfirmationModalOptions, FilterItem, FormOptions, PagingComponent, PagingOptions, TagsInputOptions, TextBoxOptions } from '@bnsights/bbsf-controls'; import { PageInfoService } from '../../../_metronic/core/services/page-info.service'; import { DepartmentModel } from '../../shared/models/DepartmentModels/DepartmentModel'; import { DepartmentService } from '../../shared/Services/DepartmentService.service'; import { NgbModal } from '@ng-bootstrap/ng-bootstrap'; import { AuthService, UtilityService, EnvironmentService, RequestHandlerService } from '@bnsights/bbsf-utilities'; import { Observable } from 'rxjs'; import * as i0 from "@angular/core"; export declare class SectorsDepartmentInfoComponent implements OnInit, OnDestroy { utilityService: UtilityService; private environmentService; private activatedRoute; private authService; private departmentService; private pageInfoService; private modalService; private requestHandlerService; ApiUrl: string; DepartmentId: string; Department: DepartmentModel; searchTextBox: TextBoxOptions; departmentIdTextBox: TextBoxOptions; filterForm: FormGroup<{}>; userDepartmentForm: FormGroup<{}>; showFilter: boolean; userDepartmentPagingResult: any[]; filteredUserDepartmentPagingResult: any[]; userDepartmentPaging: PagingOptions; textInputFilter: FilterItem; departmentIdTextInputFilter: FilterItem; isFilterLoaded: boolean; pagingElement: PagingComponent; addUsersToDepartmentForm: FormGroup<{}>; addUserToDepartmentFormOptions: FormOptions; userAutoComplete: TagsInputOptions; deleteUserId: string; deleteConfirmationOptions: ConfirmationModalOptions; deleteControlLoaded: boolean; ConfirmationModalControl: ConfirmationModalComponent; constructor(utilityService: UtilityService, environmentService: EnvironmentService, activatedRoute: ActivatedRoute, authService: AuthService, departmentService: DepartmentService, pageInfoService: PageInfoService, modalService: NgbModal, requestHandlerService: RequestHandlerService); ngOnInit(): void; setUserDepartmentListResult(result: any): void; loadBreadCrumpData(): void; initializePage(): void; showAddUserToDepartmentModal(addUserToDepartmentModal: any): void; getAddUserToDepartmentModel: () => any[]; getAddUserToDepartmentFunction: (AddModel: any) => Observable; showDeleteUserFromDepartmentModal(encryptedUserId: string): void; deleteUserFromDepartment: (deleteUserId: string) => Observable; /**FunctionName:filterUserDepartmentList */ /**Declaration:function to filter user Department List in client-side */ /**Parameters:*/ /**searchValue: current value of search box*/ filterUserDepartmentList(searchValue: any): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }