import React, { FC } from 'react'; import { ZoomData } from './type'; interface RangeSliderProps { initRangeData: number[]; min?: number; max?: number; RANGE_COLOR: string[]; enableEditThumbValue: Function; onChangeRange: Function; sliderSize: string | number; randomStr: string; maxRangeLimit: string; onChangeMaxRangeLimit?: Function; tempDisableUpdateData: Function; disabled?: boolean; draggingRef: React.MutableRefObject; useZoom?: boolean; zoomData: ZoomData | null; onlyMark?: boolean; onlyRange?: boolean; hideFirstRange?: boolean; hideLastRange?: boolean; } declare const RangeSlider: FC; export default RangeSlider;