import { FC } from 'react'; import React from 'react'; import type { ComponentInstance } from '../../interfaces/ComponentInstance'; interface PageDragBoxProps { component: ComponentInstance; style?: React.CSSProperties; className?: string; onClick?: (component: ComponentInstance) => void; isSelected?: boolean; span?: number; } declare const PageDragBox: FC; export default PageDragBox;