import { OnInit } from '@angular/core'; import { Observable } from 'rxjs'; import { ProcessDefinition } from '../../entity/processdefinition'; import { MessagerService } from '@farris/ui-messager'; import { I18nService } from '../../runtime/services/i18n.service'; export declare class ProcessSelectorComponent implements OnInit { private msgService; private i18nService; cls: string; gridData: ProcessDefinition[]; columns: { title: any; field: string; width: number; }[]; idField: string; mySelection: string[]; private subject; constructor(msgService: MessagerService, i18nService: I18nService); ngOnInit(): void; btnOKClick(): void; btnCancelClick(): void; subscribe(): Observable; onSelectionChange(data: any): void; }