/**
 * Until this is customizable, this is an internal module
 *
 * @internal
 * @packageDocumentation
 */
import type { GraphLink, GraphNode } from "../graph";
/**
 * @returns link map which takes source, target, and ind to get lane
 */
export declare function greedy(nodes: readonly GraphNode[], gap: number): Map<GraphLink, number>;
