import { BaseElement } from './Base/index'; import { Participant } from './Participant'; import { MessageFlow } from './ProcessElements/MessageFlow'; /** * Contains information about the BPMN collaboration, such as the name of the * collaboration and a list of participants. */ export type Collaboration = BaseElement & { name: string; participants: Array; messageFlows: Array; };