import { HtmlPolicy, ParsedNode } from 'stream-markdown-parser'; import { NodeComponentProps } from '../../types/node-component'; import { default as React } from 'react'; export declare function HtmlInlineNode(props: NodeComponentProps<{ type: 'html_inline'; content: string; tag?: string; attrs?: [string, string | null][] | null; children?: ParsedNode[]; loading?: boolean; autoClosed?: boolean; }> & { htmlPolicy?: HtmlPolicy; }): React.JSX.Element; export default HtmlInlineNode;