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: (axis: Pick, axisDirection: "x" | "y", axisIndex: number, formattedSeries: ProcessedSeries) => "nice" | "strict" | ((min: number, max: number) => { min: number; max: number; });