import React from "react"; interface DataDragAndDropItemProps extends React.HTMLAttributes { children: React.ReactNode; /** * Unique id */ id: string; /** * Index of the item being dragged */ index: number; } /** * TODO * * @see 🏷️ {@link DataDragAndDropItemProps} * @example * ```tsx * * TODO * * ``` */ declare const DataDragAndDropItem: React.ForwardRefExoticComponent>; export default DataDragAndDropItem; export { DataDragAndDropItem }; export type { DataDragAndDropItemProps };