import type React from 'react'; import type { BaseProps } from '../../types/component'; export interface SwiperProps extends BaseProps { indicatorDots?: boolean; indicatorColor?: string; indicatorActiveColor?: string; autoplay?: boolean; current?: number; currentItemId?: string; duration?: number; interval?: number; displayMultipleItems?: number; circular?: boolean; vertical?: boolean; previousMargin?: string; nextMargin?: string; onChange?: (e: any) => void; onTransition?: (e: any) => void; onAnimationFinish?: (e: any) => void; } export declare const Swiper: React.ComponentType;