/// import { SxProps } from '@mui/material'; import { Theme } from '../../theme/muiTheme'; import { InfoLabelVariant } from './InfoLabel.types'; export interface Props { label: string; variant?: InfoLabelVariant; icon?: React.ReactNode; sx?: SxProps; } declare const InfoLabel: ({ label, variant, icon, sx, }: Props) => JSX.Element; export { InfoLabel };