/** * Props for the DndHandle component */ export type DndHandleProps = { /** * Additional CSS class names to apply to the drag handle. */ className?: string; }; /** * A reusable drag handle icon component for drag and drop interactions. * * Features: * - Standardized drag indicator icon * - Accessible with proper ARIA attributes * - Customizable styling through className prop * - Consistent visual appearance across applications * - Lightweight and performant * - Supports all standard HTML element props * * @example * */ export declare function DndHandle({ className }: { className?: string; }): import("react/jsx-runtime").JSX.Element;