import * as React from 'react'; import "./Portal.css"; export interface PortalProps { container?: HTMLElement; children?: React.ReactNode; disablePortal?: boolean; } export declare function Portal({ container, children, disablePortal }: PortalProps): import("react/jsx-runtime").JSX.Element | null;