import { type KeyboardEventHandler } from 'react'; interface ZoomSelectionAreaProps { bounds: DOMRect; focusable: boolean; interactable: boolean; bottomFormatter?: (value: number) => string; topFormatter?: (value: number) => string; startX: number; endX: number; height: number; width: number; handleSelectionAreaKeyDown: KeyboardEventHandler; handleSelectionAreaStartKeyDown: KeyboardEventHandler; handleSelectionAreaEndKeyDown: KeyboardEventHandler; isBottomLabelRotated?: boolean; isTopLabelRotated?: boolean; } export declare const ZoomSelection: ({ startX, endX, height, width, focusable, interactable, bottomFormatter, topFormatter, bounds, handleSelectionAreaKeyDown, handleSelectionAreaStartKeyDown, handleSelectionAreaEndKeyDown, isBottomLabelRotated, isTopLabelRotated, }: ZoomSelectionAreaProps) => import("react/jsx-runtime.js").JSX.Element; export {};