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