import * as d3 from "d3";
/**
 * Implements dragging behaviour to nodes in the workspace chart
 *
 * @author Juhana Kuparinen <juhana.kuparinen@kvanttori.fi>
 */
declare const drag: (simulation: d3.Simulation<any, undefined>, node: any) => d3.DragBehavior<Element, unknown, unknown>;
export default drag;
