/** * Note Installer — Install, remove, and scaffold Mémoire Notes. * * Sources: * - Local path: memi notes install ./my-note * - GitHub repo: memi notes install github:user/repo * - (Future) memi notes install note-name (from registry) */ import { type NoteCategory, type NoteManifest } from "./types.js"; import { type InstallCatalogNoteOptions } from "./catalog.js"; export declare function installNote(source: string, projectRoot: string, options?: InstallCatalogNoteOptions): Promise; export declare function parseGithubNoteRepo(repo: string): { owner: string; repo: string; cloneUrl: string; }; export declare function removeNote(name: string, projectRoot: string): Promise; export declare function scaffoldNote(name: string, category: NoteCategory, projectRoot: string): Promise; export declare function getNoteInfo(name: string, projectRoot: string): Promise;