import { default as React } from 'react'; export type DotsProps = { /** * className for the element */ className?: string; /** * Index of the active dot */ activeDotIndex: number; /** * Number of dot to display */ length: number; }; export declare const Dots: ({ activeDotIndex, length }: DotsProps) => React.JSX.Element; //# sourceMappingURL=Dots.d.ts.map