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