///
import { DroppableProps } from '../Droppable/Droppable';
export interface DraggableProps extends Pick, 'onKeyNav'> {
/**
* The name of the draggable, as an identifier
*/
name: keyof T;
/**
* The type of draggables it belongs to
*/
type: string;
/**
* Used to know which droppable it came from
*/
origin: TOrigin;
/**
* The text that will appear on the draggable button
*/
value: string;
/**
* Called when the drag event ends
* You might want when the draggable is moved from one dropable to another
*/
onDragEnd: () => void;
}
export declare function Draggable(props: DraggableProps): JSX.Element;