import { Path, PlaitBoard } from '@plait/core'; import { MindElement } from '../../interfaces/element'; export declare const isInRightBranchOfStandardLayout: (selectedElement: MindElement) => boolean; export interface RightNodeCountRef { path: Path; rightNodeCount: number; } export declare const insertElementHandleRightNodeCount: (board: PlaitBoard, path: Path, insertCount: number, effectedRightNodeCount?: RightNodeCountRef[]) => RightNodeCountRef[]; export declare const deleteElementsHandleRightNodeCount: (board: PlaitBoard, deletableElements: MindElement[], effectedRightNodeCount?: RightNodeCountRef[]) => RightNodeCountRef[];