import type { MinMax } from '../../core/types/min-max.js'; import type { AxisIdToScaleDomain, XYChartAxisInternal } from '../types/xy-chart-internals.js'; import { type AreaDatapoint, type BarDatapoint, type DotDatapoint, type LineDatapoint, type RectDatapoint } from '../types/xy-chart.js'; export declare function calculateAxesDomains(xAxis: XYChartAxisInternal, yAxis: XYChartAxisInternal, datapoint: LineDatapoint | DotDatapoint | BarDatapoint | RectDatapoint | AreaDatapoint, axisIdToScaleDomain: AxisIdToScaleDomain, isSeriesVisible: boolean): { xDomain: MinMax | Set; yDomain: {}; }; //# sourceMappingURL=calculate-axes-domains.d.ts.map