/** * Commander HTTP server — local-only web interface bootstrap * * Bun-only: uses Bun.serve() for the HTTP server. */ import type { CliArgs } from "../cli.js"; export declare function runCommanderServer(args: CliArgs): Promise;