import * as react from 'react'; import { ReactNode } from 'react'; interface PortalProps { children: ReactNode; container?: HTMLElement; } declare function Portal({ children, container }: PortalProps): react.ReactPortal | null; export { Portal, type PortalProps };