import React from 'react'; import type { BulletsParagraphSpec } from '@antv/ava'; import type { ThemeStylesProps, ExtensionProps, ParagraphEvents } from '../types'; type BulletsProps = ThemeStylesProps & ExtensionProps & ParagraphEvents & { spec: BulletsParagraphSpec; }; export declare function Bullets({ spec, size, theme, palette, pluginManager, showCollapse, ...events }: BulletsProps): React.JSX.Element; export {};