import React from 'react'; import type { ViewStyle } from 'react-native'; export interface PaginationProps { dotColor: string; inactiveDotColor: string; dotSpacing: number; dotSize: number; inactiveDotOpacity: number; inactiveDotScale: number; position: string; positionOffset: number; } export interface CarouselPaginationProps { activeIndex: number; containerStyle?: ViewStyle; items: any; pagination?: PaginationProps; } export declare const CarouselPagination: React.MemoExoticComponent<(props: CarouselPaginationProps) => JSX.Element>;