import type { ColumnAbstract } from "../../types.js"; import type { ColumnPartitions } from "../partition-by-pin/partition-columns-by-pin-state"; import type { PathTableItem } from "../types.js"; /** * Builds the combined path table for all three pin sections. Each section is built independently * with the correct column offset so that colStart values are globally consistent across the full * grid. A shared seen map is passed across all three sections to ensure group cell IDs remain * unique even when the same group name appears in multiple sections. The resulting rows from all * three sections are then merged in start, center, end order to form the final combined view. */ export declare function pathTable({ start, center, end }: ColumnPartitions, maxDepth: number, lastShouldFill: boolean, joinDelimiter: string): PathTableItem[][];