import { PropsWithChildren, RefObject } from 'react'; export interface PortalProps { disabled?: boolean | undefined; container?: RefObject | undefined; } export declare const Portal: (props: PropsWithChildren) => import("react/jsx-runtime").JSX.Element;