import { BaseProps } from "../../common";
interface Dots2Props extends BaseProps {
    /** Radius of the dots in pixels or a string with a length unit. */
    dotRadius?: number | string;
}
/**
 * A simple loader with 3 dots.
 *
 * @example
 * <Dots2 />
 *
 * @source
 */
export declare function Dots2(props: Dots2Props): import("react/jsx-runtime").JSX.Element;
export {};
