/** * franklin migrate — one-click import from existing AI-agent configs. * * Detects standard config locations on disk (`~/.claude/`, VS Code extension * storage, `~/Library/Application Support/` editor dirs) and imports what's * there with user confirmation. Recognizes tools by their config layout, * not by brand. */ export declare function migrateCommand(): Promise; /** * Check if other AI tools are installed and suggest migration. * Only runs once — writes a marker file after first check. * Returns true if the user chose to migrate (caller should re-run start after). */ export declare function checkAndSuggestMigration(): Promise;