import { type PropsWithChildren } from 'react'; export type BulletListProps = PropsWithChildren<{ className?: string; }>; /** * Список элементов с маркерами */ export declare const BulletList: (props: BulletListProps) => JSX.Element;