import React from 'react';
import { IDotStandAlone } from './types/dot';
/**
 * @description
 * Dot component is a component that can be used to display a dot.
 * It can be used to display a notification dot or a dot to indicate a status.
 * @param {IDotStandAlone} props
 * @returns {JSX.Element}
 * @constructor
 * @example
 * <Dot variant="primary" size="SMALL" number={1} maxNumber={99} />
 */
export declare const DotStandAlone: React.ForwardRefExoticComponent<IDotStandAlone & React.RefAttributes<HTMLSpanElement>>;
