import React from 'react'; import { HTMLCoralProps } from 'coral-system'; type DragBoxProps = { index?: number; onMove?: Function; } & HTMLCoralProps<'div'>; export declare const DragBox: ({ children, index, onMove, ...rest }: DragBoxProps) => React.JSX.Element; export {};