import type { Command } from "commander"; import type { CommandOptions, SingleResult } from "../../output/index.js"; interface StopResult { action: "stopped" | "not_running"; home: string; pid: string; forced: boolean; message: string; } export type StopCommandResult = SingleResult; export declare function runStopCommand(options: CommandOptions, _command: Command): Promise; export {}; //# sourceMappingURL=stop.d.ts.map