import { QuaternaryTypes } from '../utils'; import { PropsWithChildren, ReactNode } from 'react'; export interface BulletItemProps extends PropsWithChildren { id: string; variant?: QuaternaryTypes; icon?: { src: string; altText?: string; }; copy?: ReactNode; subBullet?: boolean; className?: string; } export declare const BulletItem: (props: BulletItemProps) => import("react").JSX.Element;