import type { BuildConfig } from "../types/build-type.js"; import type { ValidationCheck } from "./types.js"; /** * Ordered list of validation checks. * * To add a new check: import it and push it onto this array. * To disable a check: remove or comment it out here — nothing else changes. */ export declare const VALIDATION_PIPELINE: ValidationCheck[]; export type PipelineReport = { passed: string[]; failed: { name: string; description: string; issues: { path: string; message: string; }[]; }[]; }; /** * Runs every check in VALIDATION_PIPELINE against the resolved BuildConfig. * Returns a structured report — the caller decides how to display or exit. */ export declare function runValidationPipeline(config: BuildConfig): PipelineReport; //# sourceMappingURL=pipeline.d.ts.map