UNPKG

slidedeck

Version:

An easy to use React-based slide show library

11 lines (10 loc) 310 B
/// <reference types="react" /> import Slide from "../slide/Slide"; declare type Props = { title: string; theme: any; slides: Array<typeof Slide>; showNavigation: boolean; }; export declare const SlideDeck: ({ title, theme, slides, showNavigation }: Props) => JSX.Element; export {};