import { BaseElement } from '../Base/index'; import { Lane } from './Lane'; /** * Describes a BPMN LaneSet; in essence a collection of lanes. */ export type LaneSet = BaseElement & { lanes: Array; };