import { BasePropsType } from '../_internal'; export interface SwiperPropsType extends BasePropsType { indicator?: boolean | { type: 'light' | 'primary'; }; autoplay?: boolean; initIndex?: number; interval?: number; duration?: number; loop?: boolean; direction?: 'horizontal' | 'vertical'; itemActiveClass?: string; onChange?: (res: { current: number; }) => void; itemsPerView?: number; spaceBetween?: number; } export interface SwiperItemPropsType extends BasePropsType { }