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

interface BulletGraphicProps {
    name: 'placeholder' | 'variant-test' | 'worldwide' | 'celebrate-collaborate' | 'ai' | 'many-media' | 'qual-and-quant' | 'alert' | 'comment';
    size?: number;
    sx?: SxProps;
}
declare const BulletGraphic: FunctionComponent<BulletGraphicProps>;

export { BulletGraphic as default };
export type { BulletGraphicProps };
