import { ReactNode } from 'react'; declare type Props = { rootId?: string; children: ReactNode; }; export declare const Portal: ({ children, rootId }: Props) => import("react").ReactPortal; export {};