/** @packageDocumentation * @module Breadcrumb */ import * as React from "react"; import { WithDragSourceProps } from "../../dragdrop/withDragSource"; import { TreeDragDropType } from "../../tree/deprecated/hocs/withDragDrop"; /** @internal */ export interface DragDropBreadcrumbNodeProps extends React.AllHTMLAttributes { isOver?: boolean; isDragging?: boolean; canDrag?: boolean; canDrop?: boolean; } /** @internal */ export declare class DragDropBreadcrumbNodeComponent extends React.Component { render(): JSX.Element; } /** @internal */ export declare function DragDropBreadcrumbNode(): import("react-dnd").DndComponentClass & import("../../dragdrop/withDropTarget").WithDropTargetProps>; //# sourceMappingURL=DragDropBreadcrumbNode.d.ts.map