import { type HealScope, type HealStep } from "./common.js"; /** * The fixed heal order is the dependency chain: certs → npm → path → mcp. TLS * trust gates npm; npm gates a usable PATH of tools; MCP pre-flight depends on * npm/npx. `--scope` selects a subset; the order is always preserved. */ export declare const HEAL_STEPS: readonly HealStep[]; /** * Parse `--scope` (e.g. "certs,npm" or "all"). Unknown tokens fail closed so a * typo cannot silently broaden a repair run. Returns the scopes in canonical * {@link HEAL_SCOPES} order. */ export declare function parseScope(raw: unknown): HealScope[];