/** * Notes CLI — Manage Mémoire Notes (downloadable skill packs). * * Commands: * memi notes install Install from local path or GitHub * memi notes list Show all installed notes * memi notes remove Uninstall a note * memi notes create Scaffold a new note * memi notes info Show note details */ import type { Command } from "commander"; import type { MemoireEngine } from "../engine/core.js"; export declare function registerNotesCommand(program: Command, engine: MemoireEngine): void;