/** * Checks if the node is a block like element. Block like element are usually those P, DIV, LI, TD etc. * @param node The node to check * @returns True if the node is a block element, otherwise false */ export default function isBlockElement(node: Node): node is HTMLElement;