import { ReactNode } from 'react';
/**
 * Converts a React node to an HTMLElement.
 * This function uses flushSync to ensure the DOM is updated synchronously.
 * @param node - The React node to convert.
 * @returns The converted HTMLElement.
 */
export declare function reactNodeToHTMLElement(node: ReactNode): HTMLElement;
