/** * Diagram builder — forceLayout. */ import type { Group } from '../../shapes/Group'; import { forceDirectedLayout } from '../layouts'; /** Apply force layout to an existing diagram group */ export declare function applyForceLayout(group: Group, edges: Array<{ from: string; to: string; }>, options?: Parameters[2]): void;