import { type CliError } from "../_utils/cli-error.js"; import { type Result } from "../_utils/result.js"; /** * `glen update` — converge: self-update the CLI (npm-global installs), then * run the update steps for every agent whose glen plugin is already * installed, then re-verify the codex user-layer hooks. * * The plugin section intentionally runs in the OLD-version process after a * self-update — the plugin update commands are stable agent CLIs, and * re-exec'ing mid-command would lose the printed context. A failed * self-update returns immediately, skipping the plugin section. */ declare const update: () => Promise>; export { update };