import { type AxisId, type ChartState, type DefaultedXAxis, type DefaultedYAxis, type DefaultizedZoomOptions, type ZoomData } from '@mui/x-charts/internals'; import { type ChartDrawingArea } from '@mui/x-charts/hooks'; export declare function calculateZoomFromPoint(state: ChartState, axisId: AxisId, point: DOMPoint): number | null; export declare function calculateZoomFromPointImpl(drawingArea: ChartDrawingArea, axis: Pick, zoomOptions: Pick, point: Pick): number; export declare function calculateZoomStart(newStart: number, currentZoom: ZoomData, options: Pick): number; export declare function calculateZoomEnd(newEnd: number, currentZoom: ZoomData, options: Pick): number;