import { ParagraphSpec } from '@antv/narrative-text-schema';
import { ThemeProps, ExtensionProps, ParagraphEvents } from '../interface';
declare type ParagraphProps = ThemeProps & ExtensionProps & ParagraphEvents & {
    /**
     * @description specification of paragraph text spec
     * @description.zh-CN 段落描述 json 信息
     */
    spec: ParagraphSpec;
};
export declare function Paragraph({ spec, pluginManager, size, ...events }: ParagraphProps): JSX.Element;
export { Headline } from './Headline';
