/** * mama setup command * * Interactive setup wizard with Claude assistance */ /** * Options for setup command */ export interface SetupOptions { /** Port for setup server (default: 3848) */ port?: number; /** Skip browser auto-open */ noBrowser?: boolean; } /** * Execute setup command */ export declare function setupCommand(options?: SetupOptions): Promise; //# sourceMappingURL=setup.d.ts.map