import type { Context } from './context.js'; import type { Phase, PhaseState } from './types.js'; /** * Returned phase state — caller decides whether to continue. `'blocked'` * means the next phase should NOT run; `'partial'` is a soft warning * (e.g. wire phase had a manual sub-edit) and the caller may continue. */ export declare function runPhase(phase: Phase, ctx: Context): Promise; //# sourceMappingURL=runner.d.ts.map