/// import type { CommonPropsType } from '../../types'; import './style'; export interface PropsType extends CommonPropsType { /** * 是否启用指示点 */ indicatorDots: boolean; /** * 是否自动切换 */ autoplay: boolean; /** * 当前索引值 */ current: number; interval: number; duration: number; circular: boolean; vertical: boolean; indicatorColor: string; indicatorActiveColor: string; } export default function Swiper({ children, className, style, autoplay, circular, vertical, indicatorDots, indicatorColor, indicatorActiveColor, duration, interval, current, events, id, }: PropsType): JSX.Element;