import * as React from "react"; import { IRow, ITableProps } from "./Table"; interface IProps extends ITableProps { moveRow: (dragIndex: number, hoverIndex: number) => void; onDragEnd?: () => void; } declare class TableDndOrder extends React.Component> { render(): JSX.Element; } declare const WrappedTableDndOrder: typeof TableDndOrder & import("react-dnd").ContextComponent; export { WrappedTableDndOrder as TableDndOrder };