import { BaseElement } from './base/index'; /** * Describes a BPMN Participant of a Collaboration. */ export declare class Participant extends BaseElement { name: string; processReference: IProcessReference; } /** * Encapsulates the ID of a process. * This field is used with Participants, to associate the Participant * with its ProcessModels. */ export interface IProcessReference { processId: string; }