import * as React from 'react'; export interface IDropZoneProps { isOver: boolean; canDrop: boolean; connectDropTarget: any; children: React.ReactNode; onDrop: (id: number) => void; isDroppable?: (props: IDropZoneProps) => boolean; dropType: string; } declare function DropZone(props: IDropZoneProps): any; declare const _default: import("react-dnd").DndComponentClass>; export default _default;