import { ReactNode } from 'react'; type PortalProps = { children: ReactNode; }; export declare function Portal({ children }: PortalProps): import("react").ReactPortal; export {};