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