import { HTMLAttributes } from 'react';
import { UnionOmit } from '@co-hooks/util';
import { IBadge } from './Badge';
export interface IBadgeNumber extends IBadge {
    content: number;
    supCls?: string;
    max?: number;
}
export declare type IBadgeNumberProps = UnionOmit<IBadgeNumber, HTMLAttributes<HTMLDivElement>>;
export declare function BadgeNumber(props: IBadgeNumberProps): JSX.Element;
