react-slideshow-image
Version:
An image slideshow with react
4 lines (3 loc) • 491 B
TypeScript
import React from 'react';
import { SlideshowRef, SlideProps } from './types';
export declare const Slide: React.ForwardRefExoticComponent<Pick<SlideProps, "responsive" | "slidesToShow" | "slidesToScroll" | "vertical" | "children" | "duration" | "transitionDuration" | "defaultIndex" | "indicators" | "prevArrow" | "nextArrow" | "arrows" | "autoplay" | "infinite" | "pauseOnHover" | "canSwipe" | "easing" | "cssClass" | "onStartChange" | "onChange"> & React.RefAttributes<SlideshowRef>>;