export interface DropZoneProps {
    id: string;
    children: React.ReactNode;
}
/**
 * A drag-and-drop container for components.
 */
declare const DropZone: React.FC<DropZoneProps>;
export default DropZone;
