import type { Graph, Layering } from './helpers.js';
import type { LayeringOptions } from './phase2.options.js';
/**
 * Classic longest-path layering with optional compaction and lane awareness.
 */
export declare function assignLayers_LongestPath(gAcyclic: Graph, opts?: LayeringOptions): Layering;
