import React from 'react'; import { LingXiEdFC } from '@lingxiteam/types'; export interface MySwiperEDProps { visible?: any; style?: React.CSSProperties; name?: string; className?: string; autoPlay: boolean; data: any[]; slidesToShow?: number; slidesToScroll?: number; arrows?: boolean; /** 是否显示面板指示点 */ dots?: boolean; /** 方向 */ dotPosition?: 'top' | 'bottom' | 'left' | 'right'; arrowsDisplay?: any; autoplaySpeed?: any; backgroundType?: any; } declare const MySwiperED: LingXiEdFC; export default MySwiperED;