/** * Interactive setup wizard for Foundation * * Foundation is an MCP server for AI-assisted development providing: * - Codebase intelligence (Demerzel) * - Workflow patterns + memory (Gaia) * - A shared LLM provider registry (powers Demerzel semantic search; inspectable * via provider_list / provider_test) * * This wizard supports: * - Multiple access modes: API keys OR subscription/CLI passthrough * - Configurable orchestrator (any provider can orchestrate) * - Full flexibility in role assignment * - Git worktree isolation for coding agents * * Updated February 2026 with latest models from all providers. */ export declare function runSetupWizard(): Promise; /** * Add a single provider interactively */ export declare function addProvider(providerName?: string): Promise; /** * Test provider connection(s) */ export declare function testProvider(providerName?: string): Promise; /** * List configured providers */ export declare function listProviders(): Promise; //# sourceMappingURL=setup-wizard.d.ts.map