import { Command } from 'commander'; export declare const stopCommand: ReturnType; interface RunStopOptions { timeout?: number; stopAll?: boolean; } export declare function runStopCommand(groupName?: string, processName?: string, options?: RunStopOptions): Promise; declare function createStopCommand(): Command; export {};