import * as React from 'react'; export interface DataList { id?: any; showtext?: any; text?: any; clickId?: any; isNotDrag?: boolean; } export interface DdataProps { dataSource?: Array; getChangeSource?: (h: any) => any; type?: string; onClick?: (h: any) => any; } export interface DdataState { cards?: Array; type?: string; clickId?: any; } export declare class Card extends React.Component { static propTypes: { connectDragSource: any; connectDropTarget: any; index: any; isDragging: any; id: any; moveCard: any; className: any; }; render(): any; } declare const _default: any; export default _default;