/** * A hook to get a reference to an HTML element on component mount. * * @example * const { element, onMount } = useHTMLElement() * * return
* * @returns An object containing the HTML element and a ref callback to be assigned to the element. */ export declare function useHTMLElement(): { element: T | null; onMount: (node: T | null) => () => void; };