import type { GraphNode } from "../../graph"; import type { Lane } from "./index"; /** the effective children for grid layouts */ export declare function gridChildren(node: GraphNode): Set; /** * Verify that nodes were assigned valid lanes */ export declare function verifyLanes(ordered: GraphNode[], lane: Lane): number;