import React from 'react'; import { NormalTypes } from "../utils/prop-types"; export type DotTypes = NormalTypes; interface Props { type?: DotTypes; className?: string; } type NativeAttrs = Omit, keyof Props>; export type DotProps = Props & NativeAttrs; declare const Dot: React.ForwardRefExoticComponent>; export default Dot;