import type { IntlShape } from 'react-intl'; import type { SeriesIdToColorScale } from '../../../context/XYChartColorScales.context.js'; import type { AreaSeriesContent, BarSeriesContent, DotSeriesContent, LineSeriesContent, RectSeriesContent } from '../../../types/state.js'; import type { AxisIdToFormatter, BarMetadata, DotMetadata, LineMetadata, RectMetadata } from '../../../types/xy-chart-internals.js'; import type { XYChartTooltipPayload } from '../../../types/xy-chart.js'; export declare const getCustomTooltipPayload: (content: RectSeriesContent | DotSeriesContent | LineSeriesContent | BarSeriesContent | AreaSeriesContent, metadata: RectMetadata | DotMetadata | LineMetadata | BarMetadata, axisIdToFormatter: AxisIdToFormatter, intl: IntlShape, colorScaleMap: SeriesIdToColorScale, colorOverride?: string) => XYChartTooltipPayload;