/** * Setup Wizard for ralph-starter * Interactive setup to configure LLM providers and agents */ import { type LLMProvider } from '../llm/index.js'; export interface SetupResult { success: boolean; usesClaudeCode: boolean; provider?: LLMProvider; agent?: string; error?: string; } /** * Run the full setup wizard */ export declare function runSetupWizard(options?: { force?: boolean; }): Promise; //# sourceMappingURL=wizard.d.ts.map