import React, { type ReactNode } from 'react'; interface HtmlProps { portal?: React.MutableRefObject; className?: string; name?: string; children?: ReactNode; } declare const HtmlMinimal: React.ForwardRefExoticComponent>; export { HtmlMinimal };