import React, { PropsWithChildren } from 'react'; interface Props { toolbarEl?: HTMLDivElement | null; buttonIndex?: number; dragPositionId?: string; contentRef?: React.RefObject; } export declare const DraggablePanelContainer: ({ toolbarEl, buttonIndex, dragPositionId, contentRef, children, }: PropsWithChildren) => JSX.Element; export {};