import { NonCancelableEventHandler } from '../../internal/events'; import { AreaChartProps } from '../interfaces'; type HighlightProps = [null | AreaChartProps.Series, (s: null | AreaChartProps.Series) => void]; export default function useHighlightProps(series: readonly AreaChartProps.Series[], controlledHighlightedSeries?: null | AreaChartProps.Series, controlledOnHighlightChange?: NonCancelableEventHandler>): HighlightProps; export {};