declare function div(className: string, children: Node[] | string): Node; declare function p(className: string, children: Node[] | string): Node; declare function table(className: string, children: Node[] | string): Node; declare function thead(className: string, children: Node[] | string): Node; declare function tbody(className: string, children: Node[] | string): Node; declare function th(className: string, children: Node[] | string): Node; declare function tr(className: string, children: Node[] | string): Node; declare function td(className: string, children: Node[] | string): Node; declare function img(url: string): Node; declare function input(type: string, className: string, value?: string): Node; export { div, p, img, input, table, thead, tbody, th, tr, td };