import * as React from 'react'; import './index.scss'; export interface SliderComponentProps { prefix: string; animation: string; arrows: true; arrowSize: string; arrowPosition: string; arrowDirection: string; autoplaySpeed: number; dots: boolean; dotsDirection: string; draggable: boolean; infinite: boolean; slide: string; slideDirection: string; slidesToShow: number; slidesToScroll: number; speed: number; triggerType: string; centerPadding: string; cssEase: string; edgeFriction: number; swipe: boolean; touchMove: boolean; touchThreshold: number; useCSS: boolean; waitForAnimate: boolean; picUrls: string[]; } declare const SliderImg: React.FC; export default SliderImg;