/** * Type guard function to check if the provided value is an instance of HTMLElement. * * @param element - The value to check if it is an HTMLElement. * @returns Returns true if the value is an HTMLElement, otherwise false. */ export default function isHTMLElement(element: unknown): element is HTMLElement;