/** Returns the first ancestor of the given node (or the node itself) that is an HTMLElement */
declare const firstElementAncestorOfNode: (node: Node | null) => HTMLElement | null;
export default firstElementAncestorOfNode;
