import type { PolishStep } from "./types.js"; /** * Ordered list of polish steps. * * Steps share data via ctx.state. Later steps read what earlier steps wrote * (e.g. overview-detect sets state.overviewGap; downstream steps skip if false). * * To add a new step: create src/polish/steps/.ts exporting a PolishStep, * import here, append to array. */ export declare const POLISH_PIPELINE: PolishStep[]; //# sourceMappingURL=pipeline.d.ts.map