import { OnInit, EventEmitter } from '@angular/core'; import { TaskService } from '../../services/task.service'; import { UserService } from '../../services/user.service'; import { UserHelperComponent } from '../user-helper/user-helper.component'; import { NotifyService } from '@farris/ui-notify'; import { I18nService } from '../../services/i18n.service'; export declare class TaskTransferComponent extends UserHelperComponent implements OnInit { private taskSvc; protected userSvc: UserService; protected notify: NotifyService; protected i18nService: I18nService; transfer_context: { workItemId: string; comment?: string; }; completed: EventEmitter; transferContext: { workItemId: string; assignee: string; comment?: string; }; constructor(taskSvc: TaskService, userSvc: UserService, notify: NotifyService, i18nService: I18nService); ngOnInit(): void; handleOk(): void; }