import { type AxisId, type SeriesId } from '@mui/x-charts/internals'; interface ChartsAxisZoomSliderPreviewProps { axisId: AxisId; axisDirection: 'x' | 'y'; reverse: boolean; x: number; y: number; height: number; width: number; /** * If provided, only the series with these IDs will be shown in the preview. */ seriesIds?: SeriesId[]; } export declare function ChartsAxisZoomSliderPreview({ axisId, axisDirection, reverse, seriesIds, ...props }: ChartsAxisZoomSliderPreviewProps): import("react/jsx-runtime").JSX.Element; export {};