import { ElementChildren, HTMLDomNodeElement } from "../../typings"; import React from "react"; import { RecursivePartial } from "../../typings/helper"; export type HtmlDomNodeProps = RecursivePartial & { idx?: string | null; children?: ElementChildren | HTMLDomNodeElement["children"]; tagName: HTMLDomNodeElement["data"]["tagName"]; }; export declare function HtmlDomNode(props: HtmlDomNodeProps): React.JSX.Element;