import { BaseElement } from './Base/index'; /** * Describes a BPMN Participant of a Collaboration. */ export type Participant = BaseElement & { name: string; processReference: string; };