import { type AxisId } from '@mui/x-charts/internals'; interface ChartsZoomSliderProps { /** * The ID of the axis this overview refers to. */ axisId: AxisId; /** * The direction of the axis. */ axisDirection: 'x' | 'y'; } /** * Renders the zoom slider for a specific axis. * @internal */ export declare function ChartsAxisZoomSlider({ axisDirection, axisId }: ChartsZoomSliderProps): import("react/jsx-runtime").JSX.Element | null; export {};