/// <reference types="react" />
import { Color } from 'csstype';
import { ViewStyle } from 'react-native';
export interface CarouselPaginationProps {
    current: number;
    length: number;
    style?: ViewStyle;
    theme?: {
        enabled: Color;
        disabled: Color;
    };
}
export default function CarouselPagination(props: CarouselPaginationProps): JSX.Element;
