import React from "react"; import { Props } from "../DragSortList"; export interface SortableListProps { dataSource: Props["list"]; onChange: Props["onChange"]; rowKey: Props["rowKey"]; renderItem?: (item: T, index: number) => React.ReactNode; activationConstraint?: Props["activationConstraint"]; } declare const SortableList: React.FC>; export default SortableList;