import React, { HTMLAttributes } from "react"; export interface PortalProps extends HTMLAttributes { /** * An optional container where the portaled content should be appended. */ rootElement?: HTMLElement | null; } export declare const Portal: React.ForwardRefExoticComponent>; export default Portal;