import { SxProps, Theme } from '@mui/material/styles'; import { ReactNode } from 'react'; export type LegendValueBadgeProps = { children: ReactNode; sx?: SxProps; }; export declare const LegendValueBadge: ({ children, sx }: LegendValueBadgeProps) => import("react/jsx-runtime").JSX.Element;