/// <reference types="react" />
interface Props {
    active: boolean;
    emptyDotColor: string;
    activeDotColor: string;
}
declare const Dot: ({ active, emptyDotColor, activeDotColor }: Props) => JSX.Element;
export default Dot;
