#!/usr/bin/env node
/**
 * NeuroLink Setup Command - Main Provider Setup Wizard
 *
 * Provides a beautiful welcome experience for new users and guided
 * provider selection, while delegating to existing setup commands.
 */
import type { SetupArgs } from "../../lib/types/index.js";
/**
 * Main setup command handler
 */
export declare function handleSetup(argv: SetupArgs): Promise<void>;
