import * as React from 'react'; /** * className is the class of the div containing all the bullet stuff. * bulletClassName is the class name of the region containing the bullet itself containing background color and foreground color * */ type Props = { className: string; bulletClassName: string; bulletText: string; }; export declare const Bullet: React.FC; export {};