/// import "./index.scss"; import React = require("react"); /** * Enables people to drag componens & drop components * around the app */ export declare class DragDropComponent extends React.Component<{ onDragStart?: Function; onDragStop?: Function; onDrag: Function; canMove?: boolean; }, any> { constructor(); startDragging: (event: any) => void; drag: (event: MouseEvent) => void; stopDragging: () => void; render(): JSX.Element; }