import { FunctionComponent } from 'react';
import { BaseProps } from '../type';
interface ThreeDotsProps extends BaseProps {
    radius?: string | number;
}
declare const ThreeDots: FunctionComponent<ThreeDotsProps>;
export default ThreeDots;
