import React from 'react'; interface SeriesPoint { key: string; x: number; y: number; color: string; } interface HighlightedPointProps { point: null | SeriesPoint; role?: 'group' | 'button'; ariaLabel?: string; ariaHasPopup?: boolean; ariaExpanded?: boolean; } declare const _default: React.MemoExoticComponent>>; export default _default;