/** * Server CLI Commands for NeuroLink * Implements HTTP server management commands */ import type { CommandModule } from "yargs"; /** * Server CLI command factory */ export declare class ServerCommandFactory { /** * Create the main server command with subcommands */ static createServerCommands(): CommandModule; private static buildStartOptions; private static buildStopOptions; private static buildStatusOptions; private static buildOpenAPIOptions; private static buildRoutesOptions; private static buildConfigOptions; private static executeStart; private static executeStop; private static executeStatus; private static executeOpenAPI; private static executeRoutes; private static executeConfig; }