import React from 'react'; import type { DefaultProps } from '../../types'; import type { BadgeProps } from '@mui/material/Badge'; export interface IBadge extends DefaultProps, BadgeProps { counter: number | string; overlap?: 'rectangular' | 'circular'; vertical?: 'top' | 'bottom'; horizontal?: 'right' | 'left'; color?: 'default' | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning'; } declare const Badge: (props: IBadge) => React.JSX.Element; export default Badge;