import React__default from 'react'; interface ISortableProps { type: string | symbol; onMoveItem: (dragIndex: number, hoverIndex: number) => void; onMoveEnd?: () => void; index: number; id?: string; className?: string; style?: any; children?: any; title?: string; /** 排序拖拽方向,默认纵向。如果布局是横向布局的,设置horizontal。 */ direction?: "vertical" | "horizontal"; } declare const Sortable: React__default.FC; export { Sortable as default };