/** @packageDocumentation * @module Breadcrumb */ import * as React from "react"; import { DragSourceProps, DropTargetProps } from "../../dragdrop/DragDropDef"; import { TreeDragDropType } from "../../tree/deprecated/hocs/withDragDrop"; import { BreadcrumbProps } from "../Breadcrumb"; /** * Props that are injected to the HOC component. * @beta * @deprecated */ export interface BreadcrumbDragDropProps { dragProps?: DragSourceProps; dropProps?: DropTargetProps; } /** * A HOC component that adds drag and drop functionality to the supplied breadcrumb component. * @beta * @deprecated */ export declare function withBreadcrumbDragDrop

(BreadcrumbComponent: React.ComponentType

): React.ComponentType

>; //# sourceMappingURL=withDragDrop.d.ts.map