import React from "react"; import "./dragtouch.polyfills"; import "./sortable-list.scss"; export declare type SortableListProps = JSX.IntrinsicElements["div"] & { /** on sort callback */ onSort: (list: Array) => void; /** disable sorting */ disabled?: boolean; }; /** The component allows for sorting list by drag and drop. */ export declare const SortableList: React.FC;