import { ReactNode, ReactPortal } from "react";
interface PortalProps {
    mount?: Element | DocumentFragment | string;
    children?: ReactNode;
}
/** Component for rendering children outside of the Component Hierarchy root node. */
export declare function Portal({ mount, ...props }: PortalProps): ReactPortal | null;
export {};
