import type { DateTimeFormatter, FormatterWithPrecision } from '../../../../core/types/formatter.js'; import type { AnyXYChartScale, AxisIdToFormatter, XYChartAxisInternal } from '../../../types/xy-chart-internals.js'; interface AxisFormatterConfig { axisConfig: Pick | undefined; axisId: string; scale?: AnyXYChartScale; axesIdToFormatter: AxisIdToFormatter; width: number; } /** * Returns a formatter function for the axis, handling time axes with no custom formatter. */ export declare function getAxisFormatterWithTimeFallback({ axisConfig, axisId, scale, axesIdToFormatter, width, }: AxisFormatterConfig): FormatterWithPrecision | DateTimeFormatter; export {};