import { BadgeProps } from 'antd';
import { FC } from 'react';
import { BADGE, TComponentProps } from '../../Types';
interface IChildren extends Omit<BadgeProps, 'children'> {
    children: TComponentProps[];
}
export interface IBadge {
    ctype: typeof BADGE;
    props: IChildren;
}
declare const Badge: FC<IBadge>;
export default Badge;
