import { MutableRefObject, ReactNode } from 'react'; type EvolutionChartHoverOverlayProps = { hoveredDatasetIndex: number | null; labels: string[]; barCentersRef: MutableRefObject>; barHalfWidthRef: MutableRefObject>; barTopsRef: MutableRefObject>>; barBottomsRef: MutableRefObject>>; colors: string[]; areaGap: number; barWidth: number; }; /** * Creates smooth curved areas that highlight a dataset when you hover over it. * Think of it like drawing connecting bridges between all the bars of the same color * to show they belong together - like connecting the dots but with pretty curves! */ export declare const EvolutionChartHoverOverlay: (props: EvolutionChartHoverOverlayProps) => ReactNode; export {};