import { HtmlPolicy, ParsedNode } from 'stream-markdown-parser';
import { CustomComponentMap } from '../../customComponents';
import { NodeComponentProps } from '../../types/node-component';
import { default as React } from 'react';
export declare function HtmlBlockNode(props: NodeComponentProps<{
type: 'html_block';
content: string;
raw?: string;
tag?: string;
attrs?: [string, string | null][] | null;
children?: ParsedNode[];
loading?: boolean;
}> & {
customComponents?: CustomComponentMap;
htmlPolicy?: HtmlPolicy;
placeholder?: React.ReactNode;
}): import("react/jsx-runtime").JSX.Element;
export default HtmlBlockNode;