import { type AxisId } from '@mui/x-charts/internals';
interface ChartZoomSliderProps {
  /**
   * 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 ChartAxisZoomSlider({
  axisDirection,
  axisId
}: ChartZoomSliderProps): import("react/jsx-runtime").JSX.Element | null;
export {};