import * as d3 from "d3";
import { Link } from "../../../types";
/**
 * Draws the workspace map as an SVG using D3.js.
 *
 * TODO: remove use of any (create typings for renderChartFn in hooks/useD3.ts)
 * This is a pretty hard task, props to whoever can solve this!
 *
 * @author Juhana Kuparinen <juhana.kuparinen@kvanttori.fi>
 * @author Teemu Salonen <teemu.salonen@kvanttori.fi>
 */
export default function draw(simulation: d3.Simulation<any, undefined>, nodes: any, links: Link[], graph: any, svg: any, updateNode: (value: string) => void): void;
