export declare enum HtmlTag { A = "a", B = "b", BODY = "body", BR = "br", BUTTON = "button", CODE = "code", COL = "col", COLGROUP = "colgroup", DIV = "div", FOOTER = "footer", H1 = "h1", H2 = "h2", H3 = "h3", H4 = "h4", H5 = "h5", H6 = "h6", HEAD = "head", HR = "hr", HTML = "html", I = "i", IMG = "img", INPUT = "input", LABEL = "label", LI = "li", LINK = "link", MARK = "mark", META = "meta", OL = "ol", OPTGROUP = "optgroup", OPTION = "option", P = "p", PRE = "pre", SECTION = "section", SELECT = "select", SMALL = "small", SPAN = "span", STRONG = "strong", STYLE = "style", SCRIPT = "script", TABLE = "table", TBODY = "tbody", TD = "td", TEXTAREA = "textarea", TFOOT = "tfoot", TH = "th", THEAD = "thead", TIME = "time", TITLE = "title", TR = "tr", U = "u", UL = "ul" } export declare const defaultStyles: Record>; export declare const buildClass: (name: string, attributes: Record) => string; export declare const buildDefaultClasses: () => string; export declare enum ParamsStyle { m = "margin", mt = "margin-top", mb = "margin-bottom", ml = "margin-left", mr = "margin-right", p = "padding", pt = "padding-top", pb = "padding-bottom", pl = "padding-left", pr = "padding-right" } export declare const buildParamsClass: (name: ParamsStyle, value: string) => string;