import { Data } from "../../../types";
/**
 * Starts the simulation of forces between nodes in the workspace map.
 * Also calls the draw function to draw our map.
 *
 * TODO: remove use of any (create typings for renderChartFn in hooks/useD3.ts)
 *
 * @author Juhana Kuparinen <juhana.kuparinen@kvanttori.fi>
 * @author Teemu Salonen <teemu.salonen@kvanttori.fi>
 */
declare const forceSimulation: (svg: any, data: Data, updateNode: (value: string) => void) => any;
export default forceSimulation;
