/** * memi setup — Zero-friction onboarding. * * One command that handles the full Figma + Claude Code setup: * 1. Validate Figma token via REST (instant — shows @handle) * 2. Validate Figma file key (shows file component count) * 3. Check plugin health, auto-fix if stale * 4. Copy manifest path to clipboard (macOS) * 5. Start bridge in background * 6. Write MCP config to .mcp.json * 7. Test pull to confirm the full chain * 8. Print "You're ready" summary */ import type { Command } from "commander"; import type { MemoireEngine } from "../engine/core.js"; export declare function registerSetupCommand(program: Command, engine: MemoireEngine): void;