import { ReactNode } from "react"; interface OverlayPortalProps { children: ReactNode; } declare const OverlayPortal: ({ children }: OverlayPortalProps) => import("react").ReactPortal; export default OverlayPortal;