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