/** * Sharded build pipeline (plan #2, Phase 4). * * Ties the shard substrate together into a single unified build: * plan (reuse cached fragments) → run changed shards in parallel → * merge fragments + recover cross-package edges → persist → derive * indexes + run rules → return the same RunGraphResult the * single-process path produces. * * The result's catalog is unified: intra-shard edges keep their original * (semantic, in exact mode) fidelity; cross-package edges are recovered * by the boundary pass and labeled `crossShard: true` / `'syntactic'`. */ import type { RunShardedInput, RunShardedResult } from './shard-pipeline-internals.js'; export type { RunShardedInput, RunShardedResult } from './shard-pipeline-internals.js'; /** Run the full sharded build and return a unified RunGraphResult-shaped value. */ export declare function runShardedGraph(input: RunShardedInput): Promise; //# sourceMappingURL=sharded-graph.d.ts.map