/** * herdctl start - Start the fleet * * Commands: * - herdctl start Start all agents * - herdctl start --config ./path/to/config Custom config path * - herdctl start --state ./path/to/state Custom state directory */ export interface StartOptions { config?: string; state?: string; verbose?: boolean; web?: boolean; webPort?: number; } /** * Start the fleet */ export declare function startCommand(options: StartOptions): Promise; //# sourceMappingURL=start.d.ts.map