import { Portal as _Portal, PortalProps } from "./Portal"; import { PortalProvider } from "./PortalContext"; import { PortalHost, PortalHostProps } from "./PortalHost"; type PortalFamily = typeof _Portal & { Host: typeof PortalHost; }; declare const Portal: PortalFamily; export { Portal, PortalProvider }; export type { PortalProps, PortalHostProps };