import { PropsWithChildren } from 'react'; export interface PortalProps extends PropsWithChildren { rootId?: string; needCleanup?: boolean; } declare const Portal: ({ children, rootId, needCleanup }: PortalProps) => import("react").ReactPortal | null; export { Portal };