import type { ReactNode } from "react"; export interface PortalProps { children: ReactNode; disablePortal?: boolean; container?: HTMLElement | (() => HTMLElement); }