import { Command } from 'commander'; export declare const restartCommand: ReturnType; interface RestartInvokeOptions { restartAll?: boolean; } export declare function runRestartCommand(groupName?: string, processName?: string, options?: RestartInvokeOptions): Promise; declare function createRestartCommand(): Command; export {};