import * as React from 'react'; export interface SourceBoxProps { id: number; text?: any; message?: object; isChange: boolean; onChange?: (h: any) => any; } declare class DragCard extends React.Component { static propTypes: { connectDragSource: any; connectDropTarget: any; isDragging: any; id: any; }; render(): any; } export default DragCard;