import { DragHandle } from "./components/DragHandle.mjs";
import { SortableItem } from "./components/SortableItem.mjs";
import { SortableListItem, SortableListProps } from "./type.mjs";
import { ReactNode } from "react";

//#region src/SortableList/SortableList.d.ts
interface ISortableList {
  <T extends SortableListItem = SortableListItem>(props: SortableListProps<T>): ReactNode;
  DragHandle: typeof DragHandle;
  Item: typeof SortableItem;
}
declare const SortableList: ISortableList;
//#endregion
export { SortableList };
//# sourceMappingURL=SortableList.d.mts.map