import type { Element, Node, TextNode, CommentNode, NewTagOptions } from '../types'; export declare function newTag(tagName: string, options?: NewTagOptions): Element; export declare function createTextNode(content: string): TextNode; export declare function createComment(content: string): CommentNode; export declare function setText(el: Element, text: string): Element; export declare function setInnerHtml(el: Element, html: string): Element; export declare function append(el: Element, content: string | Element): Element; export declare function prepend(el: Element, content: string | Element): Element; export declare function insert(el: Element, position: number, content: string | Element | Node): Element; export declare function remove(el: Element): Element; export declare function empty(el: Element): Element; export declare function clone(el: Element, deep?: boolean): Element; export declare function decompose(el: Element): void; export declare function smooth(el: Element): Element; //# sourceMappingURL=content.d.ts.map