import type { AnyXYChartScale } from '../../types/xy-chart-internals.js'; import type { DotDatapoint } from '../../types/xy-chart.js'; export declare const xAccessor: (scale: AnyXYChartScale) => (datapoint: DotDatapoint) => number; export declare const yAccessor: (scale: AnyXYChartScale) => (datapoint: DotDatapoint) => number;