import type { IntlShape } from 'react-intl'; import type { FormatterWithPrecision, TimeFrameFormatter } from '../../../../core/types/formatter.js'; import type { AxisIdToFormatter, XYChartAxisInternal } from '../../../types/xy-chart-internals.js'; export type TooltipFormatter = FormatterWithPrecision | TimeFrameFormatter; export declare function getTooltipFormatter(axisConfig: Pick, axisIdToFormatter: AxisIdToFormatter, intl: IntlShape): TooltipFormatter;