
import * as React from 'react';


interface SwiperSlideProps {
  slot?: string;
  id?: string | number;
  className?: string;
  style?: React.CSSProperties;
  children?: React.ReactNode;
}
declare const SwiperSlide: React.FunctionComponent<SwiperSlideProps>;

export default SwiperSlide;
  