import React from 'react'; import 'swiper/swiper-bundle.css'; import './index.less'; export interface PisellImageCarouselsProps { dataSource?: string[]; width?: number | string; height?: number; showArrows?: boolean; showDots?: boolean; autoplay?: boolean; interval?: number; borderRadius?: number; loop?: boolean; className?: string; style?: React.CSSProperties; } declare const PisellImageCarousels: React.FC; export default PisellImageCarousels;