import React from 'react'; export interface MySwiperProps { /** 数据源 */ data?: any[]; itemType?: string; itemValue?: string; itemLink?: string; /** 录播时间 */ autoplay?: boolean; /** 方向 */ dotPosition?: 'top' | 'bottom' | 'left' | 'right'; /** 是否显示面板指示点 */ dots?: boolean; /** 自定义样式 */ style?: React.CSSProperties; beforeChange?: (from: number, to: number) => void; afterChange?: (current: number) => void; visible?: any; current?: number; doNext?: any; doPrev?: any; className?: string; slidesToShow?: number; slidesToScroll?: number; arrows?: boolean; arrowsDisplay?: any; backgroundType?: any; } declare const Swiper: React.ForwardRefExoticComponent>; export default Swiper;