import { TableTypes } from '.';
import TableParts from './Parts';
declare namespace Drag {
    type Cell = TableParts.Cell;
    type HeadRow = Cell[];
    type BodyRow = Cell[] & {
        rowID?: any;
    };
    type Input = TableTypes.UniInput & {
        head: HeadRow | false;
        rows: BodyRow[];
        onOrderChanged: {
            (orderList: any[]): void;
        };
    };
}
declare const Drag: (p: Drag.Input) => import("react/jsx-runtime").JSX.Element;
export { Drag, Drag as default };
