/**
 * 段落
 */
import { ForwardRefExoticComponent } from 'react';
import { ParagraphProps, TypeMark } from './types';
type IParagraph = ForwardRefExoticComponent<ParagraphProps> & TypeMark;
declare const RefParagraph: IParagraph;
export default RefParagraph;
