import React from "react"; import { SortableOptions } from "sortablejs"; import "./sortable-styles.css"; type SortableListProps = React.HTMLAttributes & { options?: SortableOptions; onEndIds?: (ids: string[]) => void; }; export default function SortableList({ options, children, onEndIds, ...props }: SortableListProps): React.JSX.Element; export {};