import { AbstractDonut } from './AbstractDonut.js'; import { DonutNode, TreeNode, SimpleNode } from './utils/DonutUtils.js'; export declare class OneSelectionDonut extends AbstractDonut { dataChange(newData: TreeNode): void; onSelectionChange(selectedArcsList: Array>): void; protected hoverNode(hoveredNode: DonutNode): void; protected unhoverNodesButNotSelected(): void; protected onClick(event: PointerEvent, clickedNode: DonutNode): void; }