///
import { type BadgeProps as MuiBadgeProps } from '@mui/material/Badge/Badge';
import { type WithoutEmotionSpecific } from '../types';
import { type CounterColor, type CounterVariants } from './types';
export type CounterProps = Omit, 'color' | 'children' | 'variant' | 'anchorOrigin' | 'overlap' | 'invisible' | 'withBorder' | 'badgeContent' | 'content'> & {
/**
* Цвет фона
*/
color: CounterColor;
/**
* Группа цвета
*/
variant?: CounterVariants;
/**
* Контент
*/
content?: number;
};
export declare const Counter: ({ content, color, max, variant, ...props }: CounterProps) => JSX.Element;