import { type AxisConfig } from "../../../../models/axis.js";
import { type CartesianChartSeriesType } from "../../../../models/seriesType/config.js";
import { type ProcessedSeries } from "../../corePlugins/useChartSeries/index.js";
export declare const getAxisDomainLimit: <T extends CartesianChartSeriesType>(axis: Pick<AxisConfig, "id" | "domainLimit">, axisDirection: "x" | "y", axisIndex: number, formattedSeries: ProcessedSeries<T | "line">) => "nice" | "strict" | ((min: number, max: number) => {
  min: number;
  max: number;
});