import type { Command } from "commander"; import type { CommandOptions, SingleResult } from "../../output/index.js"; interface RestartResult { action: "restarted"; home: string; pid: string; message: string; } export type RestartCommandResult = SingleResult; export declare function runRestartCommand(options: CommandOptions, _command: Command): Promise; export {}; //# sourceMappingURL=restart.d.ts.map