export declare function addAttrs(el: Element, attrs: object): void; export declare function addText(el: Element, text: string): void; export declare function addSpace(el: Element): void; export declare function span(attrs?: {}, inner?: string): HTMLSpanElement; export declare function p(attrs?: {}, inner?: string): HTMLParagraphElement; export declare function a(attrs?: {}, inner?: string): HTMLAnchorElement; export declare function div(attrs?: {}, inner?: string): HTMLDivElement; export declare function br(attrs?: {}): HTMLBRElement; export declare function hr(attrs?: {}): HTMLHRElement; export declare function img(attrs?: {}): HTMLImageElement; export declare function tag(tagName: string, attrs?: {}, inner?: string): HTMLElement; export declare function textToElement(text: string): Element | null;