import { PropsWithChildren } from 'react'; interface PortalProps { mounted?: boolean; rootClassName?: string; /** Whether to inherit viewport dimensions and positioning */ inheritViewport?: boolean; /** Pointer events behavior for the portal */ pointerEvents?: 'auto' | 'none'; } export declare function Portal({ children, mounted, rootClassName, inheritViewport, pointerEvents }: PropsWithChildren): import('react').ReactPortal | null; export {};