import { type NumberValue } from '@mui/x-charts-vendor/d3-scale'; import { type AxisConfig, type ChartsAxisProps, type D3Scale, type DefaultedAxis, type ScaleName } from "../../../../models/axis.js"; import { type ChartDrawingArea } from "../../../../hooks/useDrawingArea.js"; export declare function getRange(drawingArea: ChartDrawingArea, axisDirection: 'x' | 'y', axis: AxisConfig): [number, number]; export declare function getNormalizedAxisScale(axis: Readonly>>, domain: ReadonlyArray): D3Scale;