import { EL } from "../node/el"; import type { HTMLOptions } from "./common/html"; import type { JsonEL } from "../node/el/jsonEL"; export declare const renderHTML: (elOrJsonEL: JsonEL | EL, htmlOptions?: HTMLOptions) => string; export declare const renderHTMLfragment: (elOrJsonEL: JsonEL | EL, htmlOptions?: HTMLOptions) => string; export declare const renderElementsFragment: (elements: (JsonEL | EL)[], htmlOptions?: HTMLOptions) => string; export default renderHTML;