import { Component } from 'react'; interface Iprops { dots: boolean; infinite: boolean; autoplay: boolean; width: number; height: number | 'auto'; urlList: { url: string; type: 1 | 2 | 3 | 4 | 5; link: string; showDate: any[]; date: any[]; }[]; } export default class CarouselPlugin extends Component { onImgClick: (item: Iprops['urlList']) => void; getShowUrlList: (urlList: Iprops['urlList']) => { url: string; type: 2 | 1 | 5 | 4 | 3; link: string; showDate: any[]; date: any[]; }[]; render(): JSX.Element; } export {};