/** * Setup Wizard - Runs after npm install to configure claude-memory * * Features: * 1. Scans for projects * 2. Offers to generate CLAUDE.md for projects without one * 3. Auto-configures MCP in ~/.claude.json */ interface SetupOptions { projectsDir?: string; skipMcp?: boolean; skipBriefing?: boolean; interactive?: boolean; } /** * Run the setup wizard */ export declare function runSetupWizard(options?: SetupOptions): Promise; /** * Check if this is running as a postinstall script */ export declare function isPostInstall(): boolean; export {};