///
import { type BadgeProps as MuiBadgeProps } from '@mui/material/Badge/Badge';
import { type WithoutEmotionSpecific } from '../types';
import { type BadgeColor, type BadgeVariantsColor } from './types';
export type BadgeProps = Omit, 'color'> & {
/**
* Цвет фона
*/
color: BadgeColor;
/**
* Наличие белой рамки
*/
withBorder?: boolean;
/**
* Группа цвета
*/
variantColor?: BadgeVariantsColor;
};
export declare const Badge: ({ children, color, max, withBorder, variantColor, ...props }: BadgeProps) => JSX.Element;