import type { RefObject } from 'react';
import type { PortalContainerElement } from './element';
export type PortalBaseContainer = PortalContainerElement | RefObject<PortalContainerElement>;
export type PortalContainer = PortalBaseContainer | (() => PortalBaseContainer);