import { PortalProps } from '@mui/material/Portal'; import { FC } from 'react'; import { Props as RndProps } from 'react-rnd'; import { MediaContainerProps } from '../media-container/MediaContainer'; export declare type ContainerSizePosition = { width: number; height: number; left: number; top: number; }; export interface DraggablePopoverProps extends PortalProps, Pick { rndProps?: RndProps; className?: string; audioPlaceholder?: string; } /** * Popover/Portal component that is responsible for PIP logic and UI * @category React Component * @category UI Controls */ export declare const DraggablePopover: FC;