import { FC } from "react";
interface ListBulletIconProps {
    className?: string;
    width?: number;
    height?: number;
}
declare const ListBulletIcon: FC<ListBulletIconProps>;
export default ListBulletIcon;
