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