import React from 'react'; interface DragContentProps { children?: React.ReactNode; className?: string; direction?: string[]; moveMaxWidth?: number; moveMaxHeight?: number; style?: React.CSSProperties; dragMouseDown?: (evt: any, direction?: string) => void; dragMouseMove?: (evt: any, direction?: string) => void; dragMouseUp?: (evt: any, direction?: string) => void; } declare const DragContent: (props: DragContentProps) => any; export default DragContent;