import { default as React } from 'react'; export interface PortalProps { /** Content to portal */ children: React.ReactNode; /** Target container (defaults to document.body) */ container?: Element | null; } /** * Portal Component * * Renders children into a DOM node outside the parent component's hierarchy. * Useful for modals, tooltips, and overlays that need to break out of z-index stacking. * * @example * ```tsx * * Content * * ``` * * @example * ```tsx * * Tooltip content * * ``` */ export declare const Portal: React.FC; //# sourceMappingURL=portal.d.ts.map