UNPKG

react-native-hook-image-slider

Version:
10 lines (9 loc) 287 B
/// <reference types="react" /> interface Props { images: string[]; activeIndex: number; emptyDotColor: string; activeDotColor: string; } declare const Pagination: ({ images, activeIndex, activeDotColor, emptyDotColor }: Props) => JSX.Element; export default Pagination;