/// <reference types="react" />
import { UnionOmit } from '@co-hooks/util';
import { IBadgeProps } from './Badge';
export interface IBadgeDot {
    supCls?: string;
}
export declare type IBadgeDotProps = UnionOmit<IBadgeDot, Omit<IBadgeProps, 'content'>>;
export declare function BadgeDot(props: IBadgeDotProps): JSX.Element;
