import { type ReactNode } from 'react'; type PortalProps = { children: ReactNode; container?: HTMLElement | null; }; declare const Portal: ({ children, container }: PortalProps) => import("react").ReactPortal | null; export { Portal }; export type { PortalProps };