/** * Creates a HTML tag. * @param tagName Name of the tag, eg. "a", "p", "blockquote". * @param content Content inside the tag. * @param attributes Attribute dictionary. * @param selfClosing * @returns {string} */ import { HTML } from "./model"; export declare function createHtmlTag(tagName: string, content: string | null, attributes?: { [key: string]: string; }, selfClosing?: boolean): HTML;