import { ParsedNode } from 'stream-markdown-parser'; import { NodeComponentProps } from '../../types/node-component'; import { default as React } from 'react'; export declare function ParagraphNode(props: NodeComponentProps<{ type: 'paragraph'; children?: ParsedNode[]; }>): React.JSX.Element; export default ParagraphNode;