import type { BoberConfig } from "../../config/schema.js"; import type { PipelineResult } from "../pipeline.js"; import type { PipelineEngine, PipelineEngineName } from "./engine.js"; /** * Engine adapter that wraps the original TypeScript pipeline implementation. * Delegates to runTsPipeline — the extracted former runPipeline body — with * ZERO behaviour change on the default 'ts' path. */ export declare class TsPipelineEngine implements PipelineEngine { readonly name: PipelineEngineName; run(userPrompt: string, projectRoot: string, config: BoberConfig, opts?: { runId?: string; }): Promise; } //# sourceMappingURL=ts-engine.d.ts.map