export declare class DomUtil { static getElementById(elementId: string): T; static getElementByClass(className: string, parentElement?: HTMLElement): T; static createElement(tagName: K): HTMLElementTagNameMap[K]; static getAttribute(el: HTMLElement, attrName: string, defaultValue?: any): any; static setAttribute(el: HTMLElement, attrName: string, value?: string): void; static removeElementById(elementId: string): void; }