/** * @author Hanz * @date 2022/3/7 下午3:52 * @description */ import { FunctionComponent } from 'react'; import { SliderSingleProps, SliderRangeProps } from './interface'; import './index.scss'; export type Visibles = { [index: number]: boolean; }; export declare const Slider: FunctionComponent; export type { SliderSingleProps, SliderRangeProps }; export default Slider;