import { type NumberValue } from '@mui/x-charts-vendor/d3-scale'; import { type AxisConfig } from "../../../../models/axis.mjs"; import { type CartesianChartSeriesType } from "../../../../models/seriesType/config.mjs"; import { type ProcessedSeries } from "../../corePlugins/useChartSeries/index.mjs"; export declare const getAxisDomainLimit: (axis: Pick, axisDirection: "x" | "y", axisIndex: number, formattedSeries: ProcessedSeries) => "nice" | "strict" | ((min: NumberValue, max: NumberValue) => { min: NumberValue; max: NumberValue; });