import React, { type JSX } from 'react'; import { IARCProps, ICoords, RenderableContent } from '@adam-sv/arc'; export interface IDroppableProps extends IARCProps { children: RenderableContent; onDrop?: (data: string, ev: React.DragEvent, dragStartPosition: ICoords) => unknown; onDragOver?: (ev: React.DragEvent) => unknown; onDragOut?: (ev: React.DragEvent) => unknown; } export declare const Droppable: ({ children, className, id, style, onDrop, onDragOver, onDragOut, }: IDroppableProps) => JSX.Element;