/** * Canonical bootstrap phase names (ADR-0052). The hook is the Commander * adapter; business rules live behind the planner and post-bailout executor. */ export declare const PRE_ACTION_PHASES: { readonly readCommandOptions: "read-command-options"; readonly mergeCliDefaults: "merge-cli-defaults"; readonly resolveProject: "resolve-project"; readonly bailoutWindow: "bailout-window"; readonly runtimeLease: "runtime-lease"; readonly projectSideEffects: "project-side-effects"; readonly buildScope: "build-scope"; readonly enterScope: "enter-scope"; readonly hostStartEffects: "host-start-effects"; readonly toolPreflight: "tool-preflight"; readonly dispose: "dispose"; }; export type PreActionPhase = (typeof PRE_ACTION_PHASES)[keyof typeof PRE_ACTION_PHASES]; /** Post-bailout phases in load-bearing order (phases 5–9 of ADR-0052). */ export declare const POST_BAILOUT_PHASE_ORDER: readonly PreActionPhase[]; //# sourceMappingURL=pre-action-bootstrap-phases.d.ts.map