import React from "react"; import { ReactNode } from "react"; type Props = { children?: ReactNode; target?: () => Element | null; }; export declare const Portal: ({ target, children }: Props) => React.JSX.Element | null; export {};