import type { Graph, NodeId } from './helpers.js'; /** * Heuristic to push nodes with only cross-lane outgoing edges downward so * that same-lane successors have room to appear above them. */ export declare function adjustCrossLaneSources(g: Graph, rankOf: Record): void;