import { SxProps } from '@mui/material';
import { FunctionComponent } from 'react';

interface BrandBadgeProps {
    color?: 'purple' | 'peach' | 'red' | 'default';
    name: 'emotion-meh' | 'emotion-good' | 'emotion-great' | 'understanding-unknown' | 'understanding-low' | 'understanding-good' | 'understanding-great' | 'property-secure' | 'property-private';
    size?: number;
    sx?: SxProps;
}
declare const BrandBadge: FunctionComponent<BrandBadgeProps>;

export { BrandBadge as default };
export type { BrandBadgeProps };
