import React from 'react'; import type { PropsWithChildren, JSX } from 'react'; export type PortalProps = { mountId?: string; }; export declare function Portal({ children, mountId }: PropsWithChildren): React.ReactPortal | JSX.Element;