/** * Setup Command Factory for NeuroLink * Consolidates all provider setup commands into a unified interface */ import type { CommandModule } from "yargs"; /** * Setup Command Factory */ export declare class SetupCommandFactory { /** * Create the main setup command with all provider subcommands */ static createSetupCommands(): CommandModule; /** * Build common options for provider setup commands */ private static buildProviderOptions; }