import { ComponentProps, ReactElement, ReactNode } from 'react'; interface BulletListProps extends ComponentProps<"div"> { /** * Children should be BulletListItem components, but any ReactNode is accepted for compatibility */ children: ReactElement[] | ReactElement; } declare const BulletList: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; interface BulletListItemProps extends ComponentProps<"div"> { children?: ReactNode; bulletPoint: ReactNode; } declare const BulletListItem: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; export { BulletList, BulletListItem }; export type { BulletListProps, BulletListItemProps };