import { ReactNode } from 'react'; interface IProps { children: ReactNode; selector: string; } declare const Portal: ({ children, selector }: IProps) => import("react").ReactPortal | null; export default Portal;