import { HtmlNodeElement } from "../../typings";
import React from "react";
import { RecursivePartial } from "../../typings/helper";
export type HtmlNodeProps = RecursivePartial & {
idx?: string | null;
children?: React.ReactNode;
tagName: keyof HTMLElementTagNameMap;
};
export declare function HtmlNode(props: HtmlNodeProps): React.JSX.Element;