import React from 'react'; import { ComponentProps } from '../../utils/types'; interface MarkdownParagraphPropsBase { children: React.ReactNode[]; } type MarkdownParagraphProps = ComponentProps; declare function MarkdownParagraph({ children, ...otherProps }: MarkdownParagraphProps): React.JSX.Element; export default MarkdownParagraph;