import { type PortalProps } from './Portal.types'; /** * A component that renders its children into a new "subtree" outside of the parent component. * It is useful for rendering modals, dropdowns, tooltips, and other floating UI elements. * * This behaves the same as `ReactDOM.createPortal`, but adds support for SSR-aware rendering and * automatic resolution of the target DOM node when used with MFUI's portal context utilities. */ export declare function Portal({ children, targetDOMNode }: PortalProps): import("react").ReactPortal | null;