import type { RefObject } from 'react'; import { type SelectionAreaProps } from './SelectionArea.js'; import type { _SelectionRef } from './types.js'; export declare const DynamicSelectionArea: ({ selection, chartRef, variant, focusable, interactable, onKeyDown, onSelectionChange, isBottomLabelRotated, isTopLabelRotated, selectionAreaRef, bottomFormatter, topFormatter, hasMagnifiers, }: Omit & { hasMagnifiers: boolean; selectionAreaRef: RefObject<_SelectionRef | null> | undefined; chartRef: RefObject; }) => import("react/jsx-runtime").JSX.Element | null;