import React, { ReactNode } from "react";
interface DraggableProps {
    children?: ReactNode;
    className?: string;
    widget: string;
    group?: string;
}
/**推拽 */
declare const Draggable: React.FC<DraggableProps>;
export default Draggable;
