import AbstractStructure from './abstractStructure'; import BranchViewController from '../viewController/branchViewController'; import Bounds from '../utils/bounds'; import StructureClass from '../common/constants/structures'; export default class FishboneRightHeaded extends AbstractStructure { calcAttachedChildrenPos(branch: BranchViewController, bounds: Bounds): void; getChildStructure(parent: BranchViewController, child: BranchViewController): StructureClass.FISHBONE_NW_NORMAL | StructureClass.FISHBONE_SW_NORMAL; specialDeal(branch: BranchViewController, bounds: Bounds): void; getAttachedConnectionInfo(startBranch: BranchViewController, endBranch: BranchViewController): import("../view/lineRender/topicLineStyle").ConnectionInfo; }