import React from 'react';
import type { PropsWithChildren, JSX } from 'react';
export type PortalProps = {
    mountId?: string;
};
export declare function Portal({ children, mountId, }: PropsWithChildren<PortalProps>): React.ReactPortal | JSX.Element;
