import React from 'react'; import { ChartDataTypes, MixedLineBarChartProps } from './interfaces'; import { HighlightDetails } from './format-highlighted'; export interface MixedChartPopoverProps { containerRef: React.RefObject; trackRef: React.RefObject; isOpen: boolean; isPinned: boolean; highlightDetails: null | HighlightDetails; onDismiss(): void; size: MixedLineBarChartProps['detailPopoverSize']; dismissAriaLabel?: string; } export default function MixedChartPopover({ containerRef, trackRef, isOpen, isPinned, highlightDetails, onDismiss, size, dismissAriaLabel, }: MixedChartPopoverProps): JSX.Element; //# sourceMappingURL=chart-popover.d.ts.map