import * as React from 'react';
import { type AxisId } from '@mui/x-charts/internals';
interface ChartAxisZoomSliderTrackProps extends React.ComponentProps<'rect'> {
  axisId: AxisId;
  axisDirection: 'x' | 'y';
  reverse: boolean;
  onSelectStart?: () => void;
  onSelectEnd?: () => void;
}
export declare function ChartAxisZoomSliderTrack({
  axisId,
  axisDirection,
  reverse,
  onSelectStart,
  onSelectEnd,
  ...other
}: ChartAxisZoomSliderTrackProps): import("react/jsx-runtime").JSX.Element;
export {};