/** * Complete Setup Integration for NeuroLink CLI * * Orchestrates the entire setup process: interactive wizard, environment management, * provider testing, and summary display. */ import type { SetupResult } from "../../lib/types/index.js"; /** * Run the complete interactive setup process */ export declare function runCompleteSetup(quiet?: boolean): Promise; /** * Wrapper for config setup command */ export declare function configSetup(quiet?: boolean): Promise; /** * Wrapper for config init command (alias for setup) */ export declare function configInit(quiet?: boolean): Promise;