import { ReactNode } from "react"; import { RenderOptions, Key } from "./types"; export declare function getNodeList(html: string, _container?: HTMLElement): NodeListOf; export declare function renderNode(node: Node, key?: Key, options?: RenderOptions): ReactNode; export declare function renderNodes(nodeList: NodeListOf | Node[], options?: RenderOptions): ReactNode[];