/// <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;
