/** * herdctl stop - Stop the fleet * * Commands: * - herdctl stop Graceful stop (wait for jobs) * - herdctl stop --force Immediate stop (cancel jobs) * - herdctl stop --timeout 30 Wait max 30 seconds before force kill */ export interface StopOptions { force?: boolean; timeout?: number; state?: string; } /** * Stop the fleet */ export declare function stopCommand(options: StopOptions): Promise; //# sourceMappingURL=stop.d.ts.map