import IHTMLElement from '../html-element/IHTMLElement.js';
import ISVGElement from '../svg-element/ISVGElement.js';
/**
* HTMLElement utility.
*/
export default class HTMLElementUtility {
/**
* Triggers a blur event.
*
* @param element Element.
*/
static blur(element: IHTMLElement | ISVGElement): void;
/**
* Triggers a focus event.
*
* @param element Element.
*/
static focus(element: IHTMLElement | ISVGElement): void;
}
//# sourceMappingURL=HTMLElementUtility.d.ts.map