import { BaseElement } from '../Base/index'; /** * Describes a BPMN TextAnnotation element. */ export type TextAnnotation = BaseElement & { text: string; };