/** * Props for the DndSortLine component * @extends React.ComponentPropsWithoutRef<"div"> */ export type SortLineProps = React.ComponentPropsWithoutRef<"div"> & { /** * The offset of the line from the item. This is a CSS value, typically negative. */ offset: string; /** * The orientation of the sort - Note this may be counterintuitive, as the line is rendered perpendicular to the sort. */ orientation: "horizontal" | "vertical"; /** * The position of the line relative to a target item. */ position: "before" | "after"; }; /** * A visual indicator line that shows where an item will be dropped during drag and drop operations. * * Features: * - Visual feedback for drop positioning * - Configurable orientation (horizontal/vertical) * - Adjustable positioning (before/after) * - Customizable offset for precise placement * - Accessible with proper ARIA attributes * - Automatic CSS class management * - Supports all standard HTML div props * * @example * */ export declare const DndSortLine: ({ offset, orientation, position, ...rest }: SortLineProps) => import("react/jsx-runtime").JSX.Element;