import type { IGraphDragMode, IGraphRenderContext } from '../../types'; import type { GraphNodeId, IChartState } from '@adam-sv/arc'; import { IInteractionLogic } from '../logic'; export interface ISelectionManagerProps { backgroundDragMode?: IGraphDragMode; chartState: IChartState; graphContext: IGraphRenderContext; interactionLogic: IInteractionLogic; invertDragControls?: boolean; } export declare function SelectionManager({ backgroundDragMode, chartState, graphContext, interactionLogic, invertDragControls, }: ISelectionManagerProps): import("react/jsx-runtime").JSX.Element;