import type { PropsWithChildren } from 'react'; import type { BadgeProps } from '@mui/material'; interface BadgedValueProps { showBadge: boolean; badgeColor?: BadgeProps['color']; } export declare const BadgedValue: React.FC>; export {};