UNPKG

react-native-hook-image-slider

Version:
12 lines (11 loc) 450 B
import * as React from "react"; interface Props { images: string[]; imageHeight: number; loadingIndicatorColor: string; separatorWidth: number; separatorColor: string; setActiveIndex: React.Dispatch<React.SetStateAction<number>>; } declare const Content: React.MemoExoticComponent<({ images, setActiveIndex, imageHeight, loadingIndicatorColor, separatorColor, separatorWidth }: Props) => JSX.Element>; export default Content;