import { ChartSeriesDetailItem } from '../internal/components/chart-series-details'; import { CartesianChartProps } from '../types/cartesian-chart'; import { ChartDataTypes, MixedLineBarChartProps } from './interfaces'; import { InternalChartSeries } from './internal-interfaces'; export interface HighlightDetails { position: string; details: ChartSeriesDetailItem[]; } /** Formats provided x-position and its corresponding series values. */ export default function formatHighlighted({ position, series, xTickFormatter, detailPopoverSeriesContent }: { position: T; series: readonly InternalChartSeries[]; xTickFormatter?: CartesianChartProps.TickFormatter; detailPopoverSeriesContent?: MixedLineBarChartProps.DetailPopoverSeriesContent; }): HighlightDetails;