import { BaseHTMLElement, VoidBaseHTMLElement } from "./html_element.js"; import type { HTMLTag, VoidHTMLTag } from "./tags.js"; /** * Converts an HTML element (BaseHTMLElement or VoidBaseHTMLElement) into a regular object. * * @param element - The HTML element to convert. * @returns The converted object representation of the HTML element. */ export declare function elementToObject(element: BaseHTMLElement | VoidBaseHTMLElement, unknown>): Record;