import { ButtonCompound } from '../ButtonCompound'; /** * Props for the DndHandleButton component * @extends React.ComponentPropsWithoutRef */ export interface DndHandleButtonProps extends React.ComponentPropsWithoutRef { /** * Indicates whether the handle is currently being dragged. * @default false */ isActive?: boolean; } /** * A reusable drag handle button component for drag and drop functionality. * * Features: * - Interactive button with drag handle icon * - Visual feedback for active drag state * - Accessible with proper ARIA attributes (defaults to "Drag handle") * - Extends ButtonCompound functionality * - Customizable styling through className prop * - Supports all standard button props * - Consistent visual appearance across applications * * @example * */ export declare const DndHandleButton: import('react').ForwardRefExoticComponent>;