import React from "react"; interface DragAndDropItemProps extends React.HTMLAttributes { children: React.ReactNode; /** * Unique id */ id: string; /** * Index of the item being dragged */ index: number; /** * Indicates if the item is an overlay */ isOverlay?: boolean; } /** * TODO * * @see 🏷️ {@link DragAndDropItemProps} * @example * ```tsx * * TODO * * ``` */ declare const DragAndDropItem: React.ForwardRefExoticComponent>; export default DragAndDropItem; export { DragAndDropItem }; export type { DragAndDropItemProps };