/** * Dual-Mode CLI Commands * CLI interface for running collaborative dual-mode swarms */ import { Command } from 'commander'; import { WorkerConfig } from './orchestrator.js'; /** * Create the dual-mode command */ export declare function createDualModeCommand(): Command; export declare function loadWorkerConfig(configPath: string, cwd?: string): Promise<{ workers: WorkerConfig[]; taskContext?: string; }>; /** * Parse `--worker "::"` specs into WorkerConfig[]. * Splits on the first two `:` so the prompt may itself contain colons. * Workers chain sequentially (each depends on the previous) unless `parallel`. */ export declare function parseWorkerSpecs(specs: string[], parallel: boolean): WorkerConfig[]; //# sourceMappingURL=cli.d.ts.map