import { Point } from '../types';
import { CalcGraph } from './types';
export declare function forceNBody(calcGraph: CalcGraph, factor: number, coulombDisScale2: number, accMap: {
[id: string]: Point;
}, dimensions?: number): {
[id: string]: Point;
};