/** * The user selection rectangle gets displayed when a user drags the mouse while pressing shift */ import React, { ReactNode } from 'react'; import type { ReactFlowProps } from '../../types'; type PaneProps = { isSelecting: boolean; children: ReactNode; } & Partial>; declare const Pane: React.MemoExoticComponent<({ isSelecting, selectionMode, panOnDrag, onSelectionStart, onSelectionEnd, onPaneClick, onPaneContextMenu, onPaneScroll, onPaneMouseEnter, onPaneMouseMove, onPaneMouseLeave, children, }: PaneProps) => JSX.Element>; export default Pane; //# sourceMappingURL=index.d.ts.map