import { FC, PropsWithChildren, RefObject } from 'react';

interface ContainerPortalProps extends PropsWithChildren {
    containerRef: RefObject<HTMLElement | null>;
    appendToParentPortal?: boolean;
}
declare const ContainerPortal: FC<ContainerPortalProps>;

export { ContainerPortal };
