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