import { type NumberValue } from '@mui/x-charts-vendor/d3-scale'; 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: NumberValue, max: NumberValue) => { min: NumberValue; max: NumberValue; });