import { Anchor } from './anchor.js';
import { Tab } from './tab.js';
/**
 * The shared properties between the two types of divisions, Tabs and Anchors.
 */
export type Division = Anchor | Tab;
