import { Swiper } from 'swiper/types'; interface BannerItem { pic: string; alt?: string; [key: string]: any; } interface Props { banner: string; alt?: string; } interface Result { realIndex: number; swiper: Swiper; } interface Autoplay { delay?: number; disableOnInteraction?: boolean; pauseOnMouseEnter?: boolean; reverseDirection?: boolean; stopOnLastSlide?: boolean; waitForTransition?: boolean; } export { BannerItem, Props, Autoplay, Result };