/** * Build describe tree structure for nested tests */ import { Scenario, DescribeNode } from "./types.js"; /** * Build a tree structure for nested describe blocks */ export declare const buildDescribeTree: (scenarios: readonly Scenario[]) => DescribeNode | null; //# sourceMappingURL=tree-builder.d.ts.map