/** * `memi self-update` — update the memi CLI itself to the latest published * version. * * - npm installs: runs `npm i -g @memi-design/cli@latest`. * - standalone binary: points at `memi upgrade` (which swaps the binary). * * This is distinct from `memi update `, which refreshes installed * design-system components — not the CLI. */ import type { Command } from "commander"; import type { MemoireEngine } from "../engine/core.js"; export declare function registerSelfUpdateCommand(program: Command, _engine: MemoireEngine): void;