import { JSX } from 'react'; export type DirectionItemProps = { /** * Unique identifier for the direction item, used by the drag-and-drop system. */ id: string; /** * Callback triggered when the item's remove (delete) button is clicked. */ onDelete?: () => void; /** * Children nodes to be rendered inside the item. */ children: React.ReactNode; /** * Indicates whether the item is currently being dragged. */ isDragging?: boolean; /** * If true, show a visual indicator above the item during drag operations. */ showAboveIndicator?: boolean; /** * If true, show a visual indicator below the item during drag operations. */ showBelowIndicator?: boolean; }; export declare const DirectionItem: (props: DirectionItemProps) => JSX.Element; export default DirectionItem;