import { OnInit, EventEmitter } from '@angular/core'; import { UserService } from '../../services/user.service'; import { PaginationInstance } from '@farris/ui-pagination'; import { DataTableComponent } from '@farris/ui-datatable'; import { NotifyService } from '@farris/ui-notify'; import { DialogComponent } from '@farris/ui-dialog'; import { I18nService } from '../../services/i18n.service'; export declare class UserHelperComponent implements OnInit { protected i18nService: I18nService; protected userSvc: UserService; protected notify?: NotifyService; private pageList; paginationOptions: PaginationInstance; columns: { title: any; field: string; width: number; }[]; searchValue: any; userListData: any[]; singleSelect: boolean; selectedUsers: { ID: string; Code: string; Name: string; OrgId: string; OrgName: string; }[]; userTable: DataTableComponent; userDialog?: DialogComponent; constructor(i18nService: I18nService, userSvc: UserService, notify?: NotifyService); completed: EventEmitter; ngOnInit(): void; handleOk(): void; handleCancel(): void; onPageSizeChange(pageSize: any): void; onPageChange(event: any): void; protected getUserList(): void; search(event: any): void; protected showModal(show: boolean): void; }