/** * The nodes selection rectangle gets displayed when a user * made a selection with on or several nodes */ import React, { MouseEvent } from 'react'; import { Node } from '../../types'; export interface NodesSelectionProps { onSelectionContextMenu?: (event: MouseEvent, nodes: Node[]) => void; noPanClassName?: string; } declare function NodesSelection({ onSelectionContextMenu, noPanClassName }: NodesSelectionProps): JSX.Element | null; declare const _default: React.MemoExoticComponent; export default _default;