import { BaseElement } from '../Base/index'; /** * Contains a BPMN Association. * These associations are used to link FlowNode elements with annotations, such as TextAnnotations. */ export type Association = BaseElement & { name?: string; sourceRef: string; targetRef: string; };