import { FC, PropsWithChildren, RefObject } from 'react'; interface ContainerPortalProps extends PropsWithChildren { containerRef: RefObject; appendToParentPortal?: boolean; } declare const ContainerPortal: FC; export { ContainerPortal };