import type { DateTimeFormatter, FormatterWithPrecision, StringFormatter } from '../../core/types/formatter.js'; import type { AnyXYChartScale, XYChartAxisInternal } from '../types/xy-chart-internals.js'; export declare function getTicksFormattedByConfig(config: XYChartAxisInternal | undefined, numTicks: number, scale: AnyXYChartScale | undefined, formatter: FormatterWithPrecision | DateTimeFormatter | StringFormatter | undefined): { ticks: any[]; formattedTicks: string[]; };