import * as React from 'react'; import { PortalProps } from './Portal.types'; /** * Portal provide a first-class way to render children into a DOM node * that exist outside the DOM hierarchy of the parent compoentn. */ declare const Portal: React.ForwardRefExoticComponent>; export default Portal;